.page-instructions {
  --guide-bg: #020704;
  /* --guide-surface: rgba(9, 20, 12, 0.76); */
  /* --guide-surface-strong: rgba(13, 29, 16, 0.92); */
  /* --guide-line: rgba(184, 255, 31, 0.18); */
  /* --guide-line-strong: rgba(184, 255, 31, 0.34); */
  --guide-text: #f3ffe9;
  --guide-muted: rgba(243, 255, 233, 0.66);
  --guide-soft: rgba(243, 255, 233, 0.08);
  --guide-lime: #b8ff1f;
  --guide-green: #00c853;
  --guide-cyan: #22d3ee;
  --guide-red: #ff6b6b;
  --guide-yellow: #ffd166;
}

.page-instructions .shell-main {
  min-height: 100svh;
}

.page-instructions .site-bg {
  display: none;
}

.nl-guide {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  padding: 0 clamp(16px, 4vw, 42px) clamp(16px, 4vw, 42px);
  color: var(--guide-text);
  background: #020403;
  isolation: isolate;
}

.nl-guide::before {
  content: none;
}

.nl-guide::after {
  content: none;
}

.nl-guide__topbar,
.nl-guide__shell {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  margin: 0 auto;
}

.nl-guide__topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 16px;
  margin-bottom: clamp(14px, 3vw, 28px);
  border: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.nl-guide__brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--guide-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nl-guide__brand img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.nl-guide__top-actions {
  display: flex;
  gap: 10px;
}

.nl-guide__icon-button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--guide-text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nl-guide__icon-button svg {
  display: block;
}

.nl-guide__icon-button:hover,
.nl-guide__icon-button.is-copied {
  transform: translateY(-2px);
  border-color: var(--guide-line-strong);
  background: rgba(184, 255, 31, 0.11);
}

body.nl-guide-modal-open {
  overflow: hidden;
}

.nl-guide__qr-modal[hidden] {
  display: none;
}

.nl-guide__qr-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.nl-guide__qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.nl-guide__qr-dialog {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  color: var(--guide-text);
  background: #17191c;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.nl-guide__qr-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--guide-text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.nl-guide__qr-close:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.nl-guide__qr-dialog h3 {
  margin: 0;
  padding: 0 38px;
  color: var(--guide-text);
  font-size: 22px;
  line-height: 1.15;
}

.nl-guide__qr-box {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.nl-guide__qr-box[hidden] {
  display: none;
}

.nl-guide__qr-box img,
.nl-guide__qr-box canvas {
  display: block;
  width: min(260px, 100%);
  height: auto;
}

.nl-guide__qr-box img[hidden],
.nl-guide__qr-box canvas[hidden] {
  display: none;
}

.nl-guide__qr-dialog p {
  margin: 14px 0 0;
  color: var(--guide-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.nl-guide__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
  align-items: start;
}

.nl-guide--select .nl-guide__shell {
  width: min(760px, 100%);
}

.nl-guide__select-hero {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: transparent;
}

.nl-guide__select-hero h1 {
  margin: 0;
  max-width: 640px;
  color: var(--guide-text);
  font-size: clamp(34px, 7vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.nl-guide__select-hero p:not(.nl-guide__eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--guide-muted);
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 800;
  line-height: 1.55;
}

.nl-guide__subscription-list {
  display: grid;
  gap: 12px;
}

.nl-guide__subscription-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: var(--guide-text);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.nl-guide__subscription-choice:hover,
.nl-guide__subscription-choice.is-active:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 31, 0.72);
}

.nl-guide__subscription-choice.is-active {
  border-color: rgba(184, 255, 31, 0.42);
}

.nl-guide__subscription-choice-main,
.nl-guide__subscription-choice-meta {
  min-width: 0;
}

.nl-guide__subscription-choice-main {
  display: grid;
  gap: 5px;
}

.nl-guide__subscription-choice-main small {
  color: var(--guide-lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nl-guide__subscription-choice-main strong {
  overflow: hidden;
  color: var(--guide-text);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nl-guide__subscription-choice-main em {
  overflow: hidden;
  color: var(--guide-muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nl-guide__subscription-choice-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nl-guide__subscription-choice-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nl-guide__eyebrow {
  margin: 0 0 10px;
  color: var(--guide-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-guide h2,
.nl-guide h3,
.nl-guide p {
  margin: 0;
}

.nl-guide__card,
.nl-guide__step-card,
.nl-guide__client-block {
  border: 1px solid var(--guide-line);
  border-radius: 28px;
  background: var(--guide-surface);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.nl-guide__subscription-card,
.nl-guide__setup-card,
.nl-guide__devices-card {
  padding: clamp(16px, 3vw, 26px);
  animation: nl-rise 580ms ease both;
}

.nl-guide__setup-card--primary {
  order: 2;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 860px;
  padding-inline: clamp(18px, 3vw, 28px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nl-guide__devices-card {
  order: 3;
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nl-guide__devices-card[hidden] {
  display: none;
}

.nl-guide__section-head--compact {
  margin-bottom: 0;
}

.nl-guide__devices-status {
  padding: 12px 14px;
  border: 1px solid rgba(184, 255, 31, 0.22);
  border-radius: 16px;
  color: var(--guide-muted);
  background: rgba(184, 255, 31, 0.045);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.nl-guide__devices-status[hidden] {
  display: none;
}

.nl-guide__devices-status[data-type="error"] {
  border-color: rgba(255, 107, 107, 0.3);
  color: #ffd1d1;
  background: rgba(255, 107, 107, 0.08);
}

.nl-guide__devices-list {
  display: grid;
  gap: 10px;
}

.nl-guide__device {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: transparent;
}

.nl-guide__device.is-blocked {
  opacity: 0.72;
}

.nl-guide__device-main {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.nl-guide__device-main strong,
.nl-guide__device-main span,
.nl-guide__device-main small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nl-guide__device-main strong {
  color: var(--guide-text);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.nl-guide__device-main span {
  color: var(--guide-muted);
  font-size: 13px;
  font-weight: 850;
}

.nl-guide__device-main small {
  color: rgba(243, 255, 233, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.nl-guide__device-side {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nl-guide__device-state {
  color: var(--guide-lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nl-guide__device.is-blocked .nl-guide__device-state {
  color: var(--guide-red);
}

.nl-guide__device-action {
  --action-fill: rgba(255, 255, 255, 0.16);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 112px;
  overflow: hidden;
  padding: 0 13px;
  border: 1px solid rgba(184, 255, 31, 0.32);
  border-radius: 13px;
  color: var(--guide-text);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.nl-guide__device-action::before {
  content: "";
  position: absolute;
  left: var(--press-x, 50%);
  top: var(--press-y, 50%);
  z-index: -1;
  width: 220%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--action-fill);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.nl-guide__device-action:hover::before,
.nl-guide__device-action:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}

.nl-guide__device-action:hover {
  border-color: rgba(184, 255, 31, 0.72);
  color: var(--guide-lime);
}

.nl-guide__device-action:disabled {
  opacity: 0.58;
  cursor: wait;
}

.nl-guide__devices-empty {
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--guide-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.nl-guide__subscription-card {
  order: 1;
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 860px;
  padding: 0;
  margin: 0 auto;
  /* border-color: rgba(255, 255, 255, 0.085); */
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)), rgba(7, 12, 8, 0.78); */
}

.nl-guide__app-button strong {
  display: block;
  padding-left: 2px;
  color: var(--guide-text);
  font-size: 16px;
  line-height: 1.15;
}

.nl-guide__step-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(184, 255, 31, 0.62);
  border-radius: 50%;
  color: var(--guide-lime);
  background: transparent;
  box-shadow: none;
  font-size: 19px;
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 0 0 currentColor;
}

.nl-guide__step-icon--check {
  font-size: 17px;
  font-weight: 900;
  text-shadow: none;
}

.nl-guide__step-icon--plus {
  font-size: 22px;
}

.nl-guide__info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.nl-guide__info {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.024);
}

.nl-guide__info-copy {
  min-width: 0;
  margin-left: auto;
  text-align: right;
}

.nl-guide__info-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--guide-muted);
  font-size: 12px;
  font-weight: 800;
}

.nl-guide__info-copy strong {
  display: block;
  overflow: hidden;
  color: var(--guide-text);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nl-guide__status-link {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.nl-guide__status-link:hover,
.nl-guide__status-link:focus-visible {
  color: var(--guide-lime);
}

.nl-guide__info-icon {
  order: -1;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: rgba(243, 255, 233, 0.62);
}

.nl-guide__info-icon--user {
  width: 32px;
  height: 32px;
  color: var(--guide-lime);
}

.nl-guide__info-icon--status {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: visible;
}

.nl-guide__info-icon--ok {
  color: var(--guide-lime);
}

.nl-guide__info-icon--bad {
  color: var(--guide-red);
}

.nl-guide__status-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nl-guide__status-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.nl-guide__status-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 2px solid #020403;
  border-radius: 999px;
  color: #020403;
  background: var(--guide-lime);
}

.nl-guide__status-badge svg {
  width: 11px;
  height: 11px;
  color: #020403;
}

.nl-guide__info-icon--bad .nl-guide__status-badge {
  background: var(--guide-red);
}

.nl-guide__expiry-progress,
.nl-guide__usage-progress {
  order: -1;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--guide-lime);
  overflow: visible;
}

.nl-guide__expiry-track,
.nl-guide__expiry-bar,
.nl-guide__usage-track,
.nl-guide__usage-bar,
.nl-guide__status-track,
.nl-guide__status-bar {
  fill: none;
  stroke-width: 3.5;
}

.nl-guide__expiry-track,
.nl-guide__usage-track,
.nl-guide__status-track {
  stroke: rgba(243, 255, 233, 0.16);
}

.nl-guide__expiry-bar,
.nl-guide__usage-bar,
.nl-guide__status-bar {
  stroke: currentColor;
  stroke-dasharray: var(--progress) 100;
  stroke-linecap: round;
  transform: rotate(-90deg) scaleY(-1);
  transform-origin: 50% 50%;
}

.nl-guide__status-track,
.nl-guide__status-bar {
  stroke-width: 2;
}

.nl-guide__expiry-calendar,
.nl-guide__usage-icon {
  stroke: currentColor;
  stroke-width: 1.65;
}

.nl-guide__usage-icon {
  transform: translateY(2px) scale(1.1);
  transform-box: fill-box;
  transform-origin: center;
}

.nl-guide__section-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nl-guide__section-head small {
  display: block;
  margin-top: 8px;
  color: var(--guide-muted);
  font-size: 13px;
  font-weight: 800;
}

.nl-guide h2 {
  color: var(--guide-text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.nl-guide__select-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(118px, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.nl-guide__select-wrap > span {
  color: var(--guide-lime);
  font-size: 14px;
  font-weight: 900;
}

.nl-guide__select-value {
  color: var(--guide-text) !important;
}

.nl-guide__select-wrap select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  color: transparent;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
}

.nl-guide__select-wrap option {
  color: #061108;
}

.nl-guide__apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.nl-guide__app-button {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  overflow: hidden;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--guide-muted);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nl-guide__app-button:hover,
.nl-guide__app-button.is-active {
  transform: translateY(-2px);
  background: transparent;
}

.nl-guide__app-button.is-active {
  border-color: rgba(184, 255, 31, 0.72);
  box-shadow: none;
}

.nl-guide__app-mark,
.nl-guide__app-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  color: var(--guide-lime);
  background: transparent;
}

.nl-guide__app-logo svg,
.nl-guide__client-mark svg {
  width: 49px;
  height: 49px;
  display: block;
  filter: none;
}

.nl-guide__client-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #061108;
  background: var(--guide-lime);
  font-size: 22px;
  font-weight: 1000;
}

.nl-guide__client-blocks {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: clamp(12px, 2vw, 16px);
  margin-top: 18px;
}

.nl-guide__client-block {
  display: flex;
  gap: 14px;
  min-height: 156px;
  height: auto;
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nl-guide__client-block:first-child {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.nl-guide__flow {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.nl-guide__step-card {
  display: flex;
  gap: 14px;
  min-height: 210px;
  padding: clamp(16px, 2.6vw, 22px);
  animation: nl-rise 640ms ease both;
}

.nl-guide__step-card:nth-child(2) {
  animation-delay: 80ms;
}

.nl-guide__step-card:nth-child(3) {
  animation-delay: 140ms;
}

.nl-guide__step-body {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.nl-guide h3 {
  margin-bottom: 8px;
  color: var(--guide-text);
  font-size: 18px;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.nl-guide__step-body p {
  color: var(--guide-muted);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.nl-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.nl-guide__action {
  --action-fill: rgba(255, 255, 255, 0.16);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 0;
  overflow: hidden;
  padding: 0 14px;
  border: 1px solid rgba(184, 255, 31, 0.23);
  border-radius: 13px;
  color: var(--guide-text);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.nl-guide__action::before {
  content: "";
  position: absolute;
  left: var(--press-x, 50%);
  top: var(--press-y, 50%);
  z-index: -1;
  width: 220%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--action-fill);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.nl-guide__action:hover {
  border-color: var(--guide-line-strong);
  background: rgba(184, 255, 31, 0.11);
}

.nl-guide__action:hover::before,
.nl-guide__action:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}

.nl-guide__action--primary {
  --action-fill: #000;
  color: #061108;
  border-color: rgba(184, 255, 31, 0.7);
  background: var(--guide-lime);
}

.nl-guide__action--primary:hover {
  color: var(--guide-lime);
  background: var(--guide-lime);
}

.nl-guide__action--subscription {
  --press-x: 50%;
  --press-y: 50%;
}

.nl-guide__footer-note {
  grid-column: 1 / -1;
  padding: 4px 2px 10px;
  color: var(--guide-muted);
  font-size: 13px;
  line-height: 1.5;
}

@keyframes nl-cloth-flow {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(-10deg) scale(1);
  }
  50% {
    transform: translate3d(3%, 2%, 0) rotate(-5deg) scale(1.06);
  }
  100% {
    transform: translate3d(-1%, 4%, 0) rotate(-13deg) scale(1.03);
  }
}

@keyframes nl-silk-swirl {
  0% {
    transform: translate3d(0, -2%, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(0, 3%, 0) rotate(16deg) scale(1.08);
  }
}

@keyframes nl-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nl-guide__shell,
  .nl-guide__flow,
  .nl-guide__client-blocks,
  .nl-guide__subscription-card {
    grid-template-columns: 1fr;
  }

  .nl-guide__flow,
  .nl-guide__footer-note {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .nl-guide {
    padding: 0 14px 14px;
  }

  .nl-guide__topbar {
    border-radius: 0 0 20px 20px;
  }

  .nl-guide__brand {
    font-size: 12px;
  }

  .nl-guide__section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .nl-guide__info-grid,
  .nl-guide__apps {
    grid-template-columns: 1fr;
  }

  .nl-guide__client-block {
    align-items: flex-start;
    min-height: 0;
    border-radius: 20px;
  }

  .nl-guide__step-card {
    min-height: 0;
  }

  .nl-guide__subscription-choice {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .nl-guide__subscription-choice-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 399px) {
  .nl-guide__subscription-card,
  .nl-guide__setup-card,
  .nl-guide__devices-card {
    padding: 0;
  }

  .nl-guide__setup-card--primary {
    padding-inline: 0;
    border: 0;
  }

  .nl-guide__setup-card--primary .nl-guide__section-head {
    padding-left: 14px;
  }

  .nl-guide__setup-card--primary .nl-guide__select-wrap:has([data-platform-select]) {
    width: calc(100% + 14px);
    margin-left: -14px;
  }

  .nl-guide__step-icon {
    display: none;
  }

  .nl-guide__step-card {
    padding: 16px 14px;
  }

  .nl-guide__client-block {
    display: block;
    padding: 16px 14px;
  }

  .nl-guide__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nl-guide__action {
    width: 100%;
  }

  .nl-guide__devices-card {
    border: 0;
  }

  .nl-guide__devices-card .nl-guide__section-head {
    padding-left: 14px;
  }

  .nl-guide__device {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .nl-guide__device-side {
    justify-content: space-between;
  }

  .nl-guide__device-action {
    min-width: 128px;
  }
}
