/* Nexus — bright operating brief */
.nexus-page {
  --nx-canvas: #f5f9fa;
  --nx-white: #ffffff;
  --nx-ink: #12313d;
  --nx-body: #526971;
  --nx-muted: #799099;
  --nx-blue: #1768cc;
  --nx-blue-deep: #0f4f98;
  --nx-sky: #ddebfa;
  --nx-sky-soft: #edf5f8;
  --nx-aqua: #a9dfe3;
  --nx-line: rgba(18, 49, 61, 0.17);
  color: var(--nx-ink);
  background: var(--nx-canvas);
  font-family: "Archivo", sans-serif;
}

.nexus-page * {
  scroll-margin-top: 78px;
}

.nexus-page h1,
.nexus-page h2,
.nexus-page h3,
.nexus-page p,
.nexus-page figure,
.nexus-page blockquote,
.nexus-page dl,
.nexus-page ol,
.nexus-page ul {
  margin: 0;
}

.nexus-page h2,
.nexus-page h3 {
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.nexus-page em {
  color: var(--nx-blue);
  font-weight: 300;
}

.nx-wrap {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding-inline: clamp(22px, 4.4vw, 64px);
}

.nx-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--nx-white);
  background: var(--nx-blue-deep);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.nx-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--nx-blue);
  transform: scaleX(0);
  transform-origin: left;
}

.nx-header {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--nx-line);
  box-shadow: 0 10px 34px rgba(37, 82, 99, 0.05);
}

.nx-header .adv-headrow {
  min-height: 72px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nx-header .mainnav {
  gap: clamp(18px, 2vw, 32px);
}

.nx-header .mainnav .navlink {
  color: var(--nx-body);
  font-size: 14px;
}

.nx-header .mainnav .navlink:hover,
.nx-header .mainnav .navlink:focus-visible {
  color: var(--nx-blue);
}

.nx-header .mainnav .navcta {
  padding: 12px 18px;
  color: var(--nx-white);
  background: var(--nx-blue);
  border-radius: 3px;
  font-size: 13px;
  transition: background 180ms ease, transform 180ms ease;
}

.nx-header .mainnav .navcta:hover,
.nx-header .mainnav .navcta:focus-visible {
  background: var(--nx-blue-deep);
  transform: translateY(-1px);
}

.nx-header .navtoggle svg {
  stroke: var(--nx-ink);
}

.nx-header .mobnav {
  background: var(--nx-white);
  border-color: var(--nx-line);
  box-shadow: 0 22px 30px rgba(18, 49, 61, 0.12);
}

.nx-header .mobnav a {
  color: var(--nx-ink);
  border-color: var(--nx-line);
}

.nx-header .mobnav a.cta {
  color: var(--nx-blue);
}

.nx-logo {
  gap: 10px;
  color: var(--nx-ink);
}

.nx-logo > span {
  color: var(--nx-ink);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.nx-logo .nx-logo-product {
  color: var(--nx-blue);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nx-section {
  padding-block: clamp(96px, 10vw, 150px);
  overflow: hidden;
}

.nx-kicker {
  color: var(--nx-blue-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.nx-lead {
  max-width: 690px;
  margin-top: 24px;
  color: var(--nx-body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.58;
}

.nx-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.nx-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 15px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nx-button:hover,
.nx-button:focus-visible {
  transform: translateY(-2px);
}

.nx-button:active {
  transform: translateY(1px);
}

.nx-button-primary {
  color: var(--nx-white);
  background: var(--nx-blue);
  box-shadow: 0 13px 28px rgba(23, 104, 204, 0.18);
}

.nx-button-primary:hover,
.nx-button-primary:focus-visible {
  background: var(--nx-blue-deep);
  box-shadow: 0 16px 30px rgba(23, 104, 204, 0.24);
}

.nx-button-dark {
  color: var(--nx-white);
  background: var(--nx-ink);
}

.nx-button-dark:hover,
.nx-button-dark:focus-visible {
  background: var(--nx-blue-deep);
}

.nx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-block: 8px;
  color: var(--nx-ink);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.nx-text-link:hover,
.nx-text-link:focus-visible {
  color: var(--nx-blue);
}

.nx-motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nx-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Hero */
.nx-hero {
  position: relative;
  background: var(--nx-canvas);
  overflow: hidden;
}

.nx-hero-grid {
  position: absolute;
  inset: 0 0 0 54%;
  background-image:
    linear-gradient(rgba(23, 104, 204, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 204, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, transparent, #000 34%);
  pointer-events: none;
}

.nx-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.78fr);
  gap: clamp(58px, 7vw, 110px);
  align-items: center;
  min-height: min(840px, calc(100svh - 72px));
  padding-top: clamp(66px, 8vh, 96px);
  padding-bottom: clamp(72px, 9vh, 110px);
}

.nx-hero-copy {
  max-width: 780px;
}

.nx-hero h1 {
  max-width: 790px;
  margin-top: 24px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(56px, 5.3vw, 80px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.99;
  text-wrap: balance;
}

.nx-hero h1 em {
  font-family: "Newsreader", serif;
  font-weight: 300;
  letter-spacing: -0.035em;
}

.nx-hero-lead {
  max-width: 690px;
  margin-top: 28px;
  color: var(--nx-body);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}

.nx-hero .nx-actions {
  margin-top: 34px;
}

.nx-hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 42px;
  padding: 18px 0 0;
  border-top: 1px solid var(--nx-line);
  list-style: none;
}

.nx-hero-assurances li {
  position: relative;
  padding-left: 17px;
  color: var(--nx-body);
  font-size: 12px;
}

.nx-hero-assurances li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--nx-aqua);
  border: 1px solid var(--nx-blue-deep);
  border-radius: 50%;
}

.nx-first-project {
  position: relative;
  color: var(--nx-ink);
  background: var(--nx-white);
  border: 1px solid rgba(23, 104, 204, 0.25);
  box-shadow: 26px 28px 0 var(--nx-sky), 0 28px 70px rgba(35, 75, 91, 0.13);
}

.nx-first-project::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--nx-blue);
}

.nx-first-project > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px 18px 27px;
  border-bottom: 1px solid var(--nx-line);
}

.nx-first-project > header div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-first-project > header span,
.nx-first-project > header strong,
.nx-first-project small,
.nx-first-project [class^="nx-project-"] > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-first-project > header span {
  color: var(--nx-blue-deep);
}

.nx-first-project > header strong {
  color: var(--nx-muted);
}

.nx-first-project > header i {
  width: 9px;
  height: 9px;
  background: var(--nx-blue);
  border-radius: 50%;
}

.nx-project-problem,
.nx-project-output {
  padding: 28px 28px 30px 33px;
}

.nx-project-problem > span,
.nx-project-output > span {
  color: var(--nx-muted);
}

.nx-project-problem h2 {
  margin-top: 13px;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.02;
}

.nx-project-problem p,
.nx-project-output p {
  margin-top: 14px;
  color: var(--nx-body);
  font-size: 13px;
  line-height: 1.58;
}

.nx-project-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
  background: var(--nx-sky-soft);
}

.nx-project-work > div {
  min-height: 108px;
  padding: 21px 22px 22px 27px;
  border-right: 1px solid var(--nx-line);
}

.nx-project-work > div:last-child {
  border-right: 0;
}

.nx-project-work span {
  color: var(--nx-blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-project-work p {
  margin-top: 11px;
  color: var(--nx-body);
  font-size: 12px;
  line-height: 1.5;
}

.nx-project-output {
  background: var(--nx-white);
}

.nx-project-output h3 {
  margin-top: 13px;
  color: var(--nx-blue-deep);
  font-size: clamp(27px, 2.25vw, 36px);
  line-height: 1.04;
}

.nx-first-project > footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px 16px 27px;
  color: var(--nx-body);
  background: var(--nx-sky);
  border-top: 1px solid var(--nx-line);
}

.nx-first-project > footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nx-blue-deep);
  font-size: 10px;
  font-weight: 700;
}

.nx-first-project > footer span i {
  width: 7px;
  height: 7px;
  background: var(--nx-blue);
  border-radius: 50%;
}

.nx-first-project > footer small {
  color: var(--nx-body);
  letter-spacing: 0;
  text-transform: none;
}

/* Shared section heads */
.nx-section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 135px);
  align-items: start;
}

.nx-section-head-compact {
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
}

.nx-section-head h2,
.nx-how h2,
.nx-example h2,
.nx-value h2,
.nx-capabilities h2,
.nx-trust h2,
.nx-partner h2,
.nx-final h2 {
  max-width: 980px;
  font-size: clamp(50px, 5.7vw, 84px);
  line-height: 0.98;
}

/* Offer */
.nx-offer {
  background: var(--nx-white);
  border-top: 1px solid var(--nx-line);
}

.nx-offer-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 106px);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--nx-line);
  border-left: 1px solid var(--nx-line);
}

.nx-offer-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}

.nx-step-number {
  color: var(--nx-blue);
  font-family: "Newsreader", serif;
  font-size: 17px;
  font-style: italic;
}

.nx-offer-flow small,
.nx-output-map small,
.nx-example-board small {
  color: var(--nx-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nx-offer-flow h3 {
  margin-top: 30px;
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.04;
}

.nx-offer-flow p {
  margin-top: 16px;
  color: var(--nx-body);
  font-size: 13px;
  line-height: 1.6;
}

/* How it works */
.nx-how {
  background: var(--nx-sky-soft);
}

.nx-how-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.nx-how-intro h2 {
  margin-top: 24px;
}

.nx-how-steps {
  margin-top: clamp(66px, 8vw, 108px);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--nx-line);
}

.nx-how-steps li {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  gap: 38px;
  padding: 34px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-how-steps li > span {
  color: var(--nx-blue);
  font-family: "Newsreader", serif;
  font-size: 46px;
  font-style: italic;
  line-height: 0.9;
}

.nx-how-steps li > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 60px;
}

.nx-how-steps h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.nx-how-steps p {
  max-width: 640px;
  color: var(--nx-body);
  font-size: 15px;
  line-height: 1.65;
}

/* Concrete example */
.nx-example {
  background: var(--nx-white);
}

.nx-example-head {
  max-width: 1040px;
}

.nx-example-head h2 {
  margin-top: 24px;
}

.nx-example-board {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr);
  margin-top: clamp(64px, 8vw, 105px);
  border: 1px solid var(--nx-line);
  box-shadow: 24px 24px 0 var(--nx-sky-soft);
}

.nx-example-problem,
.nx-example-result {
  padding: clamp(34px, 4.5vw, 64px);
}

.nx-example-problem {
  background: var(--nx-canvas);
  border-right: 1px solid var(--nx-line);
}

.nx-example-problem blockquote {
  margin-top: 34px;
  font-family: "Newsreader", serif;
  font-size: clamp(31px, 3.15vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.nx-example-problem dl {
  margin-top: 52px;
  border-top: 1px solid var(--nx-line);
}

.nx-example-problem dl div {
  padding: 14px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-example-problem dt {
  color: var(--nx-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nx-example-problem dd {
  margin-top: 7px;
  color: var(--nx-body);
  font-size: 13px;
  line-height: 1.45;
}

.nx-example-result {
  color: var(--nx-white);
  background: var(--nx-blue);
}

.nx-example-result small {
  color: rgba(255, 255, 255, 0.65);
}

.nx-example-result h3 {
  max-width: 690px;
  margin-top: 34px;
  font-size: clamp(43px, 4.6vw, 68px);
  line-height: 0.98;
}

.nx-example-result > p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.nx-example-result ul {
  margin-top: 50px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

.nx-example-result li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
}

.nx-example-result li span {
  color: var(--nx-aqua);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nx-example-result li strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

/* Outputs */
.nx-outputs {
  background: var(--nx-canvas);
}

.nx-output-map {
  margin-top: clamp(64px, 8vw, 108px);
  border-top: 1px solid var(--nx-line);
}

.nx-output-map article {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 34px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-output-map h3 {
  margin-top: 14px;
  font-size: clamp(28px, 2.8vw, 41px);
  line-height: 1.05;
}

.nx-output-map strong {
  display: block;
  margin-top: 14px;
  color: var(--nx-blue-deep);
  font-family: "Newsreader", serif;
  font-size: clamp(28px, 2.8vw, 41px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.nx-output-map p {
  max-width: 630px;
  margin-top: 12px;
  color: var(--nx-body);
  font-size: 13px;
  line-height: 1.6;
}

/* Hormozi value equation, translated into Nexus */
.nx-value {
  color: var(--nx-white);
  background: var(--nx-blue);
}

.nx-value .nx-kicker {
  color: var(--nx-aqua);
}

.nx-value h2 {
  margin-top: 24px;
}

.nx-value h2 em {
  color: var(--nx-aqua);
}

.nx-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(62px, 8vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.nx-value-grid article {
  min-height: 265px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.nx-value-grid article > span {
  color: var(--nx-aqua);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nx-value-grid h3 {
  max-width: 520px;
  margin-top: 32px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.nx-value-grid p {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.62;
}

/* Capabilities, deliberately secondary */
.nx-capabilities {
  background: var(--nx-white);
}

.nx-capability-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.nx-capability-intro h2 {
  margin-top: 24px;
}

.nx-capability-intro .nx-text-link {
  margin-top: 28px;
}

.nx-capability-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(64px, 8vw, 108px);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--nx-line);
  border-left: 1px solid var(--nx-line);
}

.nx-capability-list li {
  border-right: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}

.nx-capability-list a {
  display: block;
  min-height: 126px;
  padding: 22px;
  color: var(--nx-ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nx-capability-list a:hover,
.nx-capability-list a:focus-visible {
  color: var(--nx-white);
  background: var(--nx-blue);
  transform: translateY(-3px);
}

.nx-capability-list strong {
  display: block;
  font-family: "Newsreader", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.nx-capability-list span {
  display: block;
  margin-top: 27px;
  color: var(--nx-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nx-capability-list a:hover span,
.nx-capability-list a:focus-visible span {
  color: var(--nx-aqua);
}

/* Trust and provenance */
.nx-trust {
  background: var(--nx-sky-soft);
}

.nx-trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 0.8fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: start;
}

.nx-trust h2 {
  margin-top: 24px;
}

.nx-trust-list {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--nx-line);
}

.nx-trust-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--nx-line);
}

.nx-trust-list span {
  color: var(--nx-blue-deep);
  font-size: 13px;
  font-weight: 700;
}

.nx-trust-list p {
  color: var(--nx-body);
  font-size: 13px;
  line-height: 1.55;
}

.nx-provenance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
  margin-top: clamp(74px, 9vw, 120px);
  padding-top: 42px;
  border-top: 4px solid var(--nx-aqua);
}

.nx-provenance span {
  color: var(--nx-blue-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nx-provenance h3 {
  max-width: 770px;
  margin-top: 17px;
  font-size: clamp(35px, 3.6vw, 54px);
  line-height: 1;
}

.nx-provenance > p {
  color: var(--nx-body);
  font-size: 14px;
  line-height: 1.65;
}

/* Partner path, secondary */
.nx-partner {
  padding-block: clamp(78px, 8vw, 116px);
  background: var(--nx-white);
  border-top: 1px solid var(--nx-line);
}

.nx-partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.nx-partner h2 {
  margin-top: 22px;
  font-size: clamp(45px, 4.8vw, 70px);
}

.nx-partner p {
  max-width: 590px;
  color: var(--nx-body);
  font-size: 16px;
  line-height: 1.65;
}

.nx-partner .nx-text-link {
  margin-top: 24px;
}

/* Final CTA */
.nx-final {
  padding-block: clamp(94px, 10vw, 150px);
  background: var(--nx-aqua);
}

.nx-final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.62fr);
  gap: clamp(60px, 11vw, 180px);
  align-items: end;
}

.nx-final h2 {
  margin-top: 24px;
  font-family: "Archivo", sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.97;
}

.nx-final-layout > div:last-child > p {
  max-width: 620px;
  color: #2e555f;
  font-size: 17px;
  line-height: 1.65;
}

.nx-final .nx-actions {
  margin-top: 30px;
}

/* Footer */
.nx-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--nx-ink);
}

.nx-footer .nx-logo,
.nx-footer .nx-logo > span {
  color: var(--nx-white);
}

.nx-footer .nx-logo .nx-logo-product {
  color: var(--nx-aqua);
}

.nx-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.nx-footer-top p {
  color: rgba(255, 255, 255, 0.54);
  font-family: "Newsreader", serif;
  font-size: 20px;
  font-style: italic;
}

.nx-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  padding-bottom: 32px;
  font-size: 11px;
}

.nx-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 26px;
}

.nx-footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 180ms ease;
}

.nx-footer-bottom a:hover,
.nx-footer-bottom a:focus-visible {
  color: var(--nx-aqua);
}

/* Responsive */
@media (min-width: 961px) {
  .nx-header .mobnav,
  .nx-header .mobnav.open {
    display: none;
  }
}

@media (max-width: 1120px) {
  .nx-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 46px;
  }

  .nx-hero h1 {
    font-size: clamp(52px, 5.6vw, 68px);
  }

  .nx-offer-flow li {
    grid-template-columns: 32px 1fr;
    padding: 24px 20px;
  }

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

  .nx-trust-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .nx-hero-layout,
  .nx-section-head,
  .nx-section-head-compact,
  .nx-how-intro,
  .nx-capability-intro,
  .nx-trust-layout,
  .nx-provenance,
  .nx-partner-layout,
  .nx-final-layout {
    grid-template-columns: 1fr;
  }

  .nx-hero-layout {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 105px;
  }

  .nx-hero-copy {
    max-width: 760px;
  }

  .nx-first-project {
    max-width: 680px;
  }

  .nx-section-head,
  .nx-section-head-compact {
    gap: 28px;
  }

  .nx-how-intro,
  .nx-capability-intro,
  .nx-trust-layout,
  .nx-partner-layout,
  .nx-final-layout {
    gap: 34px;
  }

  .nx-offer-flow {
    grid-template-columns: 1fr;
  }

  .nx-offer-flow li {
    min-height: 0;
  }

  .nx-how-steps li > div {
    grid-template-columns: 0.7fr 1fr;
    gap: 42px;
  }

  .nx-example-board {
    grid-template-columns: 1fr;
  }

  .nx-example-problem {
    border-right: 0;
    border-bottom: 1px solid var(--nx-line);
  }

  .nx-output-map article {
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
  }

  .nx-capability-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .nx-provenance {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .nx-wrap {
    padding-inline: 20px;
  }

  .nx-section {
    padding-block: 90px;
  }

  .nx-hero-grid {
    inset: 46% 0 0;
    mask-image: linear-gradient(180deg, transparent, #000 35%);
  }

  .nx-hero-layout {
    gap: 64px;
    padding-top: 58px;
    padding-bottom: 90px;
  }

  .nx-hero h1 {
    font-size: clamp(48px, 13vw, 61px);
    letter-spacing: -0.06em;
  }

  .nx-hero-lead {
    font-size: 16px;
  }

  .nx-hero .nx-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nx-hero .nx-button {
    width: 100%;
  }

  .nx-hero .nx-text-link {
    align-self: flex-start;
  }

  .nx-hero-assurances {
    align-items: flex-start;
    flex-direction: column;
  }

  .nx-first-project {
    margin-right: 12px;
    box-shadow: 12px 14px 0 var(--nx-sky), 0 24px 45px rgba(35, 75, 91, 0.12);
  }

  .nx-first-project > header div,
  .nx-first-project > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nx-project-work {
    grid-template-columns: 1fr;
  }

  .nx-project-work > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--nx-line);
  }

  .nx-project-work > div:last-child {
    border-bottom: 0;
  }

  .nx-section-head h2,
  .nx-how h2,
  .nx-example h2,
  .nx-value h2,
  .nx-capabilities h2,
  .nx-trust h2,
  .nx-partner h2,
  .nx-final h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .nx-offer-flow {
    margin-top: 56px;
  }

  .nx-offer-flow li {
    grid-template-columns: 34px 1fr;
    padding: 23px 18px;
  }

  .nx-how-steps {
    margin-top: 56px;
  }

  .nx-how-steps li,
  .nx-how-steps li > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nx-how-steps li {
    padding: 28px 0;
  }

  .nx-how-steps li > span {
    font-size: 34px;
  }

  .nx-example-board {
    margin-right: 10px;
    box-shadow: 10px 12px 0 var(--nx-sky-soft);
  }

  .nx-example-problem,
  .nx-example-result {
    padding: 30px 24px;
  }

  .nx-example-result li {
    grid-template-columns: 78px 1fr;
  }

  .nx-output-map article {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 0;
  }

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

  .nx-value-grid article {
    min-height: 0;
  }

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

  .nx-capability-list a {
    min-height: 112px;
    padding: 18px;
  }

  .nx-trust-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nx-partner {
    padding-block: 78px;
  }

  .nx-final {
    padding-block: 90px;
  }

  .nx-final .nx-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nx-final .nx-text-link {
    align-self: flex-start;
  }

  .nx-footer-top,
  .nx-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nexus-page *,
  .nexus-page *::before,
  .nexus-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .nx-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
