:root {
  --nh-dark: #0f172a;
  --nh-navy: #111827;
  --nh-blue: #1d4ed8;
  --nh-blue-soft: #2563eb;
  --nh-gold: #c9a45c;
  --nh-bg: #f8fafc;
  --nh-white: #ffffff;
  --nh-text: #111827;
  --nh-muted: #64748b;
  --nh-border: #e5e7eb;
  --nh-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --nh-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.nh-corporate {
  margin: 0;
  background: var(--nh-bg);
  color: var(--nh-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nh-topbar {
  background: #0f172a;
  color: white;
  padding: 14px 24px;
  font-size: 13px;
}

.nh-topbar-inner,
.nh-nav-inner,
.nh-container,
.nh-footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.nh-topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.78);
}

.nh-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nh-border);
}

.nh-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
}

.nh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nh-dark);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 20px;
}

.nh-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--nh-blue), var(--nh-blue-soft));
  color: white;
}

.nh-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.nh-links a {
  color: #334155;
  text-decoration: none;
}

.nh-links a:hover {
  color: var(--nh-blue);
}

.nh-hero {
  padding: 86px 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.nh-hero .nh-container {
  display: grid;
  gap: 22px;
}

.nh-kicker {
  color: #dbeafe;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
}

.nh-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
}

.nh-hero p {
  max-width: 820px;
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.65;
}

.nh-section {
  padding: 72px 24px;
}

.nh-section.white {
  background: white;
}

.nh-section h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.nh-lead {
  max-width: 860px;
  color: var(--nh-muted);
  font-size: 18px;
  line-height: 1.7;
}

.nh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.nh-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.nh-card {
  padding: 26px;
  border-radius: var(--nh-radius);
  background: white;
  border: 1px solid var(--nh-border);
  box-shadow: var(--nh-shadow);
}

.white .nh-card {
  background: #f8fafc;
}

.nh-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.nh-card p,
.nh-card li {
  color: var(--nh-muted);
  line-height: 1.65;
}

.nh-card ul {
  padding-left: 18px;
  margin: 10px 0 0;
}

.nh-table {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--nh-shadow);
}

.nh-table th,
.nh-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--nh-border);
  text-align: left;
  vertical-align: top;
}

.nh-table th {
  width: 260px;
  background: #f1f5f9;
  color: #334155;
}

.nh-policy-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.nh-policy-item {
  padding: 22px;
  background: white;
  border: 1px solid var(--nh-border);
  border-radius: 20px;
  box-shadow: var(--nh-shadow);
}

.nh-policy-item h3 {
  margin: 0 0 8px;
}

.nh-policy-item p {
  margin: 0;
  color: var(--nh-muted);
  line-height: 1.7;
}

.nh-alert {
  margin-top: 28px;
  padding: 20px;
  border-radius: 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  line-height: 1.6;
}

.nh-footer {
  background: #0f172a;
  color: rgba(255,255,255,.76);
  padding: 44px 24px;
}

.nh-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 28px;
}

.nh-footer h3 {
  margin: 0 0 12px;
  color: white;
}

.nh-footer p,
.nh-footer a {
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  text-decoration: none;
}

.nh-footer a:hover {
  color: white;
}

.nh-footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  color: rgba(255,255,255,.56);
}

.nh-home-compliance {
  margin: 48px auto;
  width: min(1160px, calc(100% - 48px));
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--nh-border);
  box-shadow: var(--nh-shadow);
  font-family: Inter, system-ui, sans-serif;
}

.nh-home-compliance h2 {
  margin: 0 0 12px;
  color: var(--nh-dark);
}

.nh-home-compliance p {
  color: var(--nh-muted);
  line-height: 1.65;
}

.nh-home-compliance-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.nh-home-compliance-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 900px) {
  .nh-grid,
  .nh-grid.two,
  .nh-footer-grid {
    grid-template-columns: 1fr;
  }

  .nh-nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nh-table th,
  .nh-table td {
    display: block;
    width: 100%;
  }
}
