:root {
  --midnight: #020713;
  --ink: #0f172a;
  --slate: #1c2b44;
  --steel: #283750;
  --ash: #4b576c;
  --sand: #f5f8ff;
  --paper: #ffffff;
  --accent: #4ab4ff;
  --accent-soft: #7fd7ff;
  --muted: #8c97af;
  --border: rgba(15, 23, 40, 0.15);
  --shadow: 0 25px 55px rgba(3, 7, 19, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.nx-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.nx-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, rgba(2, 7, 19, 0.92), rgba(15, 23, 42, 0.88)), url('/Images/banner_background.png');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 35px rgba(2, 7, 19, 0.6);
  color: var(--sand);
  backdrop-filter: blur(6px);
}

.nx-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nx-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.nx-logo {
  display: block;
  height: 96px;
  max-height: 96px;
  width: auto;
  object-fit: contain;
}

.nx-logo--compact {
  display: none;
  height: 56px;
  max-height: 56px;
}

.nx-eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin: 0 0 6px;
}

.nx-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
  color: rgba(245, 242, 238, 0.95);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-family: 'Space Grotesk', 'Source Sans 3', sans-serif;
}

.nx-nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  color: inherit;
}

.nx-nav a:hover {
  border-color: rgba(255, 255, 255, 0.85);
}

.nx-hero {
  margin-top: 48px;
  border-radius: 28px;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.nx-hero h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 10px 0;
}

.nx-hero p {
  margin: 0 0 14px;
}

.nx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.nx-btn {
  border-radius: 999px;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nx-btn--filled {
  background: var(--ink);
  color: var(--sand);
}

.nx-btn--ghost {
  color: var(--ink);
}

.nx-btn--filled:hover {
  background: var(--dusk);
}

.nx-btn--ghost:hover {
  background: rgba(15, 23, 40, 0.08);
}

.nx-card {
  border-radius: 24px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(10, 20, 40, 0.08);
  box-shadow: var(--shadow);
}

.nx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.nx-section {
  margin-top: 60px;
}

.nx-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.nx-section h3 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
}

.nx-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

.nx-section-note {
  font-size: 0.95rem;
  color: var(--ash);
  margin: 8px 0 0;
}

.nx-section--striped {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.nx-ad {
  margin-top: 60px;
  border-radius: 18px;
  padding: 24px;
  border: 1px dashed var(--muted);
  background: linear-gradient(120deg, rgba(122, 242, 205, 0.15), rgba(74, 180, 255, 0.15));
  font-size: 0.95rem;
}

.nx-ad strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.nx-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.nx-story-grid a {
  text-decoration: none;
  padding: 18px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: border 0.2s ease, transform 0.2s ease;
}

.nx-story-grid a:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}

.nx-footer {
  margin-top: 80px;
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.nx-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nx-footer__icon {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.nx-footer__links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.nx-footer__links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nx-footer__links a:hover {
  border-color: currentColor;
}

.nx-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.nx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(74, 180, 255, 0.15);
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 600;
}

.nx-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.nx-table td {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nx-highlight {
  background: var(--paper);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.nx-cta {
  margin-top: 50px;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ink), var(--slate));
  color: var(--sand);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.nx-cta p {
  margin: 8px 0 0;
}

.nx-cta .nx-btn {
  border-color: var(--sand);
  color: var(--sand);
}

.nx-cta .nx-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nx-breadcrumbs {
  margin: 32px 0 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.nx-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.nx-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.nx-form input,
.nx-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
}

.nx-form textarea {
  min-height: 140px;
  resize: vertical;
}

.nx-legal p {
  margin: 0 0 14px;
  color: var(--slate);
}

.nx-taglist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.nx-taglist span {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 40, 0.08);
}

.nx-disclosure {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 20, 40, 0.08);
}

.nx-disclosure p {
  margin: 12px 0 0;
}

.nx-article {
  padding-top: 40px;
}

.nx-article__dek {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 16px;
}

.nx-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--border);
}

.nx-article__summary {
  margin: 32px 0;
  padding: 24px;
  border-radius: 20px;
  background: rgba(15, 23, 40, 0.03);
}

.nx-article__summary h2 {
  margin-top: 0;
}

.nx-article__body {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.nx-article__body h2 {
  margin-bottom: 6px;
}

.nx-inline-ad {
  margin: 24px 0;
}

.nx-article__notes {
  margin: 60px 0 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.nx-article__notes h2 {
  margin-top: 0;
}

.nx-article__footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: grid;
  gap: 18px;
}

.nx-article__footer .nx-ad {
  background: rgba(15, 23, 40, 0.03);
  border: 1px dashed rgba(15, 23, 40, 0.2);
}
@media (max-width: 700px) {
  .nx-hero {
    padding: 32px;
  }

  .nx-header__inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nx-nav {
    gap: 12px;
    font-size: 0.85rem;
  }

  .nx-nav a {
    border-width: 1px;
  }

  .nx-section--striped {
    padding: 28px;
  }

  .nx-logo--full {
    display: none;
  }

  .nx-logo--compact {
    display: block;
  }

  .nx-subhead h2 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}

.nx-subhead {
  background: linear-gradient(135deg, rgba(28, 43, 68, 0.95), rgba(15, 23, 42, 0.85));
  color: var(--sand);
  padding: 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  box-shadow: 0 10px 30px rgba(2, 7, 19, 0.45);
}

.nx-subhead h2 {
  margin: 0;
  font-family: 'Space Grotesk', 'Source Sans 3', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

