:root {
  --nx-ink: #101114;
  --nx-paper: #f5f4ef;
  --nx-white: #ffffff;
  --nx-muted: #666b73;
  --nx-line: rgba(16, 17, 20, 0.14);
  --nx-blue: #315cff;
  --nx-lime: #d8ff52;
  --nx-coral: #ff6846;
  --nx-night: #0b1020;
  --nx-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nx-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --nx-radius-sm: 14px;
  --nx-radius-md: 24px;
  --nx-radius-lg: 36px;
  --nx-shadow: 0 24px 70px rgba(10, 16, 32, 0.12);
  --nx-max: 1480px;
  --nx-copy: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--nx-ink);
  background: var(--nx-paper);
  font-family: var(--nx-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nx-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--nx-blue);
  outline-offset: 4px;
}

.nx-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--nx-white);
  background: var(--nx-ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.nx-skip:focus {
  transform: translateY(0);
}

.nx-progress {
  position: fixed;
  z-index: 999;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.nx-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--nx-blue), var(--nx-coral), var(--nx-lime));
}

.nx-nav-frame {
  position: sticky;
  z-index: 900;
  top: 0;
  padding: 10px 12px 0;
  pointer-events: none;
}

.nx-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--nx-max));
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(245, 244, 239, 0.79);
  box-shadow: 0 12px 40px rgba(10, 16, 32, 0.08);
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  pointer-events: auto;
}

.nx-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nx-brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  color: var(--nx-white);
  background: var(--nx-ink);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: -0.08em;
}

.nx-brand-name {
  white-space: nowrap;
}

.nx-links {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 84px 28px 28px;
  visibility: hidden;
  opacity: 0;
  background: rgba(245, 244, 239, 0.98);
  transform: scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.nx-menu-open .nx-links {
  z-index: 899;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.nx-links a {
  font-family: var(--nx-serif);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.nx-menu-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  color: var(--nx-white);
  border: 0;
  border-radius: 50%;
  background: var(--nx-blue);
  cursor: pointer;
}

.nx-menu-button svg {
  width: 20px;
  height: 20px;
}

.nx-stage,
.nx-section,
.nx-footer-inner {
  width: min(100% - 28px, var(--nx-max));
  margin-inline: auto;
}

.nx-stage {
  padding: 54px 0 34px;
}

.nx-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nx-line);
  color: var(--nx-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nx-ink);
}

.nx-channel::before {
  width: 8px;
  height: 8px;
  background: var(--nx-coral);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(255, 104, 70, 0.14);
}

.nx-hero {
  display: grid;
  gap: 24px;
  padding-top: 28px;
}

.nx-headline-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.nx-kicker {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--nx-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nx-title {
  max-width: 1120px;
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(2.5rem, 7.8vw, 4.5rem);
  font-optical-sizing: auto;
  font-weight: 760;
  line-height: 0.99;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.nx-title em {
  color: var(--nx-blue);
  font-style: normal;
  font-weight: 760;
}

.nx-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #33363b;
  font-size: clamp(1.08rem, 3vw, 1.48rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.nx-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--nx-line);
  color: var(--nx-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.nx-byline a {
  color: var(--nx-ink);
  font-weight: 800;
}

.nx-byline span + span::before,
.nx-byline time::before {
  margin-right: 18px;
  color: var(--nx-coral);
  content: "•";
}

.nx-cover {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--nx-night);
  border-radius: var(--nx-radius-lg);
  box-shadow: var(--nx-shadow);
  isolation: isolate;
}

.nx-cover::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 12, 24, 0.84));
  content: "";
}

.nx-cover img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.nx-cover:hover img {
  transform: scale(1.035);
}

.nx-cover figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  line-height: 1.5;
}

.nx-image-code {
  flex: 0 0 auto;
  color: var(--nx-lime);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.nx-tile {
  position: relative;
  min-height: 152px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-radius-md);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0, 1), box-shadow 320ms ease, border-color 320ms ease;
}

.nx-tile:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(10, 16, 32, 0.13);
  transform: translateY(-6px);
}

.nx-tile-label {
  display: block;
  color: var(--nx-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nx-tile-value {
  display: block;
  margin-top: 20px;
  font-family: var(--nx-serif);
  font-size: clamp(1.9rem, 7vw, 3.1rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.nx-tile-note {
  display: block;
  margin-top: 8px;
  color: var(--nx-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.nx-tile--blue {
  color: var(--nx-white);
  border-color: var(--nx-blue);
  background: var(--nx-blue);
}

.nx-tile--blue .nx-tile-label,
.nx-tile--blue .nx-tile-note {
  color: rgba(255, 255, 255, 0.72);
}

.nx-tile--lime {
  background: var(--nx-lime);
}

.nx-tile--dark {
  color: var(--nx-white);
  border-color: var(--nx-night);
  background: var(--nx-night);
}

.nx-tile--dark .nx-tile-label,
.nx-tile--dark .nx-tile-note {
  color: rgba(255, 255, 255, 0.64);
}

.nx-fact-sheet {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  min-height: auto;
  background: var(--nx-white);
}

.nx-fact-title {
  margin: 0;
  font-family: var(--nx-serif);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.nx-fact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.nx-fact-list div {
  padding-top: 12px;
  border-top: 1px solid var(--nx-line);
}

.nx-fact-list dt {
  color: var(--nx-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nx-fact-list dd {
  margin: 3px 0 0;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.35;
}

.nx-jumpbar {
  display: flex;
  gap: 8px;
  margin: 22px auto 0;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  scrollbar-width: none;
}

.nx-jumpbar::-webkit-scrollbar {
  display: none;
}

.nx-jumpbar a {
  flex: 0 0 auto;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--nx-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color 180ms ease, background-color 180ms ease;
}

.nx-jumpbar a:hover {
  color: var(--nx-white);
  background: var(--nx-ink);
}

.nx-story {
  display: grid;
  width: min(100% - 28px, 1120px);
  margin: 64px auto 0;
}

.nx-share-rail {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.nx-share-rail button,
.nx-share-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--nx-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nx-share-rail button:hover,
.nx-share-rail a:hover {
  color: var(--nx-white);
  background: var(--nx-ink);
  transform: translateY(-3px);
}

.nx-share-rail svg {
  width: 18px;
  height: 18px;
}

.nx-prose {
  min-width: 0;
}

.nx-prose > p,
.nx-prose > h2,
.nx-prose > blockquote,
.nx-prose > .nx-alert {
  width: min(100%, var(--nx-copy));
  margin-inline: auto;
}

.nx-prose > p {
  margin-top: 0;
  margin-bottom: 1.55em;
  font-family: var(--nx-serif);
  font-size: clamp(1.18rem, 2.1vw, 1.36rem);
  font-weight: 430;
  line-height: 1.76;
  letter-spacing: -0.012em;
}

.nx-prose > p:first-child::first-letter {
  float: left;
  margin: 0.07em 0.1em 0 0;
  color: var(--nx-blue);
  font-family: var(--nx-serif);
  font-size: 5.7em;
  font-weight: 850;
  line-height: 0.72;
}

.nx-prose > h2 {
  margin-top: 2.5em;
  margin-bottom: 0.72em;
  font-family: var(--nx-serif);
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.nx-prose > h2::before {
  display: block;
  width: 54px;
  height: 8px;
  margin-bottom: 22px;
  background: var(--nx-lime);
  border-radius: 999px;
  content: "";
}

.nx-alert {
  position: relative;
  margin-top: 44px;
  margin-bottom: 54px;
  padding: 28px 24px 26px;
  color: var(--nx-white);
  background: var(--nx-blue);
  border-radius: var(--nx-radius-md);
  box-shadow: 14px 14px 0 var(--nx-lime);
}

.nx-alert-label {
  display: block;
  margin-bottom: 10px;
  color: var(--nx-lime);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nx-alert p {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.62;
}

.nx-pullquote {
  margin-top: 72px;
  margin-bottom: 72px;
  padding: 0;
  border: 0;
}

.nx-pullquote p {
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.nx-pullquote p::before {
  color: var(--nx-coral);
  content: "“";
}

.nx-pullquote cite {
  display: block;
  margin-top: 22px;
  color: var(--nx-muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nx-data-board {
  display: grid;
  gap: 12px;
  width: min(100%, 1060px);
  margin: 64px auto 72px;
}

.nx-data-card {
  min-height: 230px;
  padding: 26px;
  border-radius: var(--nx-radius-md);
  background: var(--nx-white);
  box-shadow: 0 16px 48px rgba(10, 16, 32, 0.07);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0, 1), box-shadow 300ms ease;
}

.nx-data-card:nth-child(2) {
  color: var(--nx-white);
  background: var(--nx-night);
}

.nx-data-card:nth-child(3) {
  background: var(--nx-lime);
}

.nx-data-card:hover {
  box-shadow: 0 26px 58px rgba(10, 16, 32, 0.13);
  transform: translateY(-7px) rotate(-0.35deg);
}

.nx-data-index {
  display: block;
  margin-bottom: 48px;
  color: var(--nx-blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.nx-data-card:nth-child(2) .nx-data-index {
  color: var(--nx-lime);
}

.nx-data-card:nth-child(3) .nx-data-index {
  color: var(--nx-ink);
}

.nx-data-card h3 {
  margin: 0 0 8px;
  font-family: var(--nx-serif);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.nx-data-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.nx-data-card p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.nx-data-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.65);
}

.nx-data-card:nth-child(3) p {
  color: rgba(16, 17, 20, 0.7);
}

.nx-sequence {
  width: min(100%, 1060px);
  margin: 64px auto 74px;
  padding: 26px;
  color: var(--nx-white);
  background: var(--nx-night);
  border-radius: var(--nx-radius-lg);
}

.nx-sequence-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.nx-sequence-head h3 {
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.nx-sequence-head span {
  color: var(--nx-lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nx-sequence-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nx-sequence-list li {
  position: relative;
  padding: 22px 0 22px 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.nx-sequence-list li::before {
  position: absolute;
  top: 28px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: var(--nx-coral);
  border: 3px solid var(--nx-night);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--nx-coral);
  content: "";
}

.nx-sequence-list strong {
  display: block;
  color: var(--nx-lime);
  font-family: var(--nx-serif);
  font-size: 1.6rem;
  line-height: 1;
}

.nx-sequence-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.55;
}

.nx-debate {
  display: grid;
  gap: 12px;
  width: min(100%, 1060px);
  margin: 64px auto 76px;
}

.nx-debate-card {
  padding: 26px;
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-radius-md);
  background: rgba(255, 255, 255, 0.64);
}

.nx-debate-card:nth-child(2) {
  color: var(--nx-white);
  border-color: var(--nx-blue);
  background: var(--nx-blue);
}

.nx-debate-card h3 {
  margin: 0 0 22px;
  font-family: var(--nx-serif);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.nx-debate-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nx-debate-card li {
  position: relative;
  padding-left: 24px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.nx-debate-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--nx-coral);
  border-radius: 50%;
  content: "";
}

.nx-debate-card:nth-child(2) li::before {
  background: var(--nx-lime);
}

.nx-author {
  display: grid;
  gap: 20px;
  width: min(100%, var(--nx-copy));
  margin: 78px auto 0;
  padding: 28px;
  border-top: 2px solid var(--nx-ink);
  border-bottom: 1px solid var(--nx-line);
}

.nx-author-badge {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  color: var(--nx-white);
  background: var(--nx-ink);
  border-radius: 50%;
  font-family: var(--nx-serif);
  font-size: 1.3rem;
  font-weight: 800;
}

.nx-author-copy small {
  color: var(--nx-blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-author-copy h3 {
  margin: 4px 0 8px;
  font-family: var(--nx-serif);
  font-size: 1.75rem;
  line-height: 1;
}

.nx-author-copy p {
  margin: 0;
  color: var(--nx-muted);
  font-size: 0.86rem;
}

.nx-author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 800;
}

.nx-author-links a {
  border-bottom: 1px solid currentColor;
}

.nx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, var(--nx-copy));
  margin: 24px auto 0;
}

.nx-tags a {
  padding: 8px 13px;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nx-tags a:hover {
  color: var(--nx-white);
  border-color: var(--nx-ink);
  background: var(--nx-ink);
}

.nx-section {
  margin-top: 96px;
}

.nx-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--nx-line);
}

.nx-section-head h2 {
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.038em;
}

.nx-section-head span {
  flex: 0 0 auto;
  color: var(--nx-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nx-related {
  display: grid;
  gap: 12px;
}

.nx-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--nx-radius-md);
  background: var(--nx-white);
  transition: color 300ms ease, background-color 300ms ease, transform 300ms cubic-bezier(0.2, 0.7, 0, 1), box-shadow 300ms ease;
}

.nx-related-card::after {
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-size: 1.8rem;
  content: "↗";
  transition: transform 300ms ease;
}

.nx-related-card:hover {
  color: var(--nx-white);
  background: var(--nx-blue);
  box-shadow: 0 24px 52px rgba(49, 92, 255, 0.22);
  transform: translateY(-7px);
}

.nx-related-card:hover::after {
  transform: translate(4px, -4px);
}

.nx-related-card span {
  color: var(--nx-muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-related-card:hover span {
  color: rgba(255, 255, 255, 0.68);
}

.nx-related-card h3 {
  max-width: 92%;
  margin: auto 0 24px;
  font-family: var(--nx-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.nx-most-read {
  display: grid;
  margin-top: 12px;
  border-top: 1px solid var(--nx-line);
}

.nx-rank {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-rank-number {
  color: var(--nx-blue);
  font-family: var(--nx-serif);
  font-size: 1.7rem;
  font-weight: 800;
}

.nx-rank h3 {
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(1.12rem, 3.6vw, 1.45rem);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.nx-rank-arrow {
  transition: transform 180ms ease;
}

.nx-rank:hover .nx-rank-arrow {
  transform: translate(4px, -4px);
}

.nx-newsletter {
  display: grid;
  gap: 28px;
  width: min(100% - 28px, var(--nx-max));
  margin: 96px auto 0;
  padding: 34px 24px;
  color: var(--nx-white);
  background: var(--nx-night);
  border-radius: var(--nx-radius-lg) var(--nx-radius-lg) 0 0;
}

.nx-newsletter h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--nx-serif);
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.nx-newsletter h2 em {
  color: var(--nx-lime);
  font-style: normal;
}

.nx-newsletter p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.nx-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: end;
}

.nx-newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: var(--nx-white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.nx-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.nx-newsletter-form button {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--nx-lime);
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nx-newsletter-form button:hover {
  box-shadow: 0 10px 34px rgba(216, 255, 82, 0.25);
  transform: translateY(-3px);
}

.nx-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--nx-night);
}

.nx-footer-inner {
  display: grid;
  gap: 32px;
  padding: 54px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.nx-footer-brand {
  color: var(--nx-white);
  font-family: var(--nx-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.nx-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.74rem;
  font-weight: 700;
}

.nx-footer-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

[data-reveal].nx-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .nx-stage,
  .nx-section,
  .nx-footer-inner {
    width: min(100% - 48px, var(--nx-max));
  }

  .nx-stage {
    padding-top: 74px;
  }

  .nx-dashboard {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nx-fact-sheet {
    grid-template-columns: 0.75fr 2fr;
    align-items: start;
  }

  .nx-fact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-story {
    width: min(100% - 48px, 1120px);
  }

  .nx-data-board,
  .nx-related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nx-data-card:nth-child(2) {
    transform: translateY(28px);
  }

  .nx-data-card:nth-child(2):hover {
    transform: translateY(21px) rotate(-0.35deg);
  }

  .nx-sequence-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-sequence-list li:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 58px;
  }

  .nx-sequence-list li:nth-child(2)::before {
    left: 23px;
  }

  .nx-debate {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nx-author {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .nx-newsletter {
    width: min(100% - 48px, var(--nx-max));
    padding: 54px;
  }

  .nx-newsletter-form {
    flex-direction: row;
  }

  .nx-newsletter-form button {
    flex: 0 0 auto;
  }
}

@media (min-width: 980px) {
  .nx-nav-frame {
    padding: 16px 24px 0;
  }

  .nx-nav {
    min-height: 64px;
    padding-inline: 16px 10px;
  }

  .nx-links {
    position: static;
    z-index: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 0;
    visibility: visible;
    opacity: 1;
    background: transparent;
    transform: none;
  }

  .nx-links a {
    padding: 9px 12px;
    border-radius: 999px;
    font-family: var(--nx-sans);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    transition: color 180ms ease, background-color 180ms ease;
  }

  .nx-links a:hover,
  .nx-links a[aria-current="page"] {
    color: var(--nx-white);
    background: var(--nx-ink);
  }

  .nx-menu-button {
    display: none;
  }

  .nx-stage {
    padding-top: 88px;
  }

  .nx-hero {
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    align-items: stretch;
    gap: 32px;
  }

  .nx-title {
    font-size: clamp(3.35rem, 4.45vw, 5.15rem);
  }

  .nx-cover,
  .nx-cover img {
    min-height: 640px;
  }

  .nx-cover {
    transform: translateY(64px);
  }

  .nx-dashboard {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    margin-top: 92px;
  }

  .nx-tile {
    grid-column: span 2;
  }

  .nx-fact-sheet {
    grid-column: span 8;
  }

  .nx-story {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 34px;
    margin-top: 110px;
  }

  .nx-share-rail {
    position: sticky;
    top: 110px;
    align-self: start;
    flex-direction: column;
    margin: 0;
  }

  .nx-sequence {
    padding: 42px;
  }

  .nx-sequence-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nx-sequence-list li,
  .nx-sequence-list li:nth-child(2) {
    min-height: 210px;
    padding: 28px 25px 20px 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .nx-sequence-list li:first-child {
    border-left: 0;
  }

  .nx-sequence-list li::before,
  .nx-sequence-list li:nth-child(2)::before {
    top: 34px;
    left: 14px;
  }

  .nx-newsletter {
    grid-template-columns: 1.4fr 0.75fr;
    align-items: end;
    padding: 56px;
  }

  .nx-footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .nx-footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1280px) {
  .nx-stage {
    width: min(100% - 80px, var(--nx-max));
  }

  .nx-fact-sheet {
    grid-column: span 4;
    grid-row: span 2;
  }

  .nx-fact-list {
    grid-template-columns: 1fr;
  }

  .nx-dashboard .nx-tile:not(.nx-fact-sheet) {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .nx-progress,
  .nx-nav-frame,
  .nx-share-rail,
  .nx-jumpbar,
  .nx-newsletter,
  .nx-footer {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .nx-cover {
    break-inside: avoid;
    box-shadow: none;
  }
}
