.page-home {
  --landing-bg: #020403;
  --landing-surface: rgba(255, 255, 255, 0.035);
  --landing-line: rgba(255, 255, 255, 0.12);
  --landing-line-soft: rgba(255, 255, 255, 0.075);
  --landing-text: #ffffff;
  --landing-muted: rgba(255, 255, 255, 0.68);
  --landing-lime: #b8ff1f;
  --landing-lime-dim: rgba(184, 255, 31, 0.14);
  --landing-width: min(1040px, calc(100% - 32px));
  background: var(--landing-bg);
}

.page-home .site-bg {
  background: #020403;
}

.page-home .site-bg__grid,
.page-home .site-bg__orb {
  display: none;
}

.page-home .site-header {
  width: var(--landing-width);
  top: 0;
  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);
}

.page-home .site-brand__mark {
  border-color: transparent;
  background: transparent;
}

.page-home .site-brand__copy small,
.page-home .site-drawer__head small {
  display: none;
}

.page-home .site-nav a:hover {
  color: var(--landing-lime);
}

.page-home .site-header__actions .button-primary {
  --action-fill: #000;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--landing-text);
  color: #020403;
  box-shadow: none;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.page-home .site-header__actions .button-primary::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.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.page-home .site-header__actions .button-primary:hover,
.page-home .site-header__actions .button-primary:focus-visible {
  color: var(--landing-lime);
  background: var(--landing-text);
  border-color: rgba(184, 255, 31, 0.6);
}

.page-home .site-header__actions .button-primary[data-press-ready="true"]:hover::before,
.page-home .site-header__actions .button-primary[data-press-ready="true"]:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}

.page-home .shell-main {
  padding-top: 38px;
}

.nl-landing {
  width: 100%;
  min-height: 100svh;
  color: var(--landing-text);
}

.nl-landing__hero,
.nl-landing__facts,
.nl-landing__pricing,
.nl-landing__servers {
  width: var(--landing-width);
  margin: 0 auto;
}

.nl-landing__hero {
  position: relative;
  min-height: min(860px, calc(100svh - 104px));
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px) 0 clamp(34px, 7vw, 76px);
  isolation: isolate;
}

.nl-landing__hero::before {
  content: none;
  position: absolute;
  left: max(-8vw, -120px);
  bottom: 10%;
  z-index: -1;
  width: min(460px, 55vw);
  height: min(460px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 31, 0.12), transparent 62%);
  filter: blur(12px);
  animation: landingGlow 7s ease-in-out infinite alternate;
}

.nl-landing__hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  animation: landingRise 0.72s ease both;
}

.nl-landing__eyebrow {
  margin: 0 0 18px;
  color: var(--landing-lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nl-landing__title,
.nl-landing__section-head h2,
.nl-landing__servers h2 {
  margin: 0;
  color: var(--landing-text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.075em;
}

.nl-landing__title {
  max-width: 760px;
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.82;
}

.nl-landing__lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--landing-muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 750;
  line-height: 1.55;
}

.nl-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nl-landing__button {
  --action-fill: rgba(255, 255, 255, 0.16);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 0 20px;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  color: var(--landing-text);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.nl-landing__button::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-landing__button:hover,
.nl-landing__button:focus-visible {
  border-color: rgba(184, 255, 31, 0.34);
  color: var(--landing-lime);
  background: transparent;
}

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

.nl-landing__button--primary {
  --action-fill: #000;
  border-color: rgba(184, 255, 31, 0.44);
  color: #061006;
  background: var(--landing-lime);
}

.nl-landing__button--primary:hover,
.nl-landing__button--primary:focus-visible {
  color: var(--landing-lime);
  border-color: rgba(184, 255, 31, 0.7);
  background: var(--landing-lime);
}

.nl-landing__hero-visual {
  position: absolute;
  inset: -18% -22vw 12% 37%;
  z-index: 0;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  animation: landingRise 0.72s 0.12s ease both;
}

.nl-landing__hero-visual::before {
  content: none;
  position: absolute;
  inset: -20% -34% -26% -20%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 55% 48%, rgba(184, 255, 31, 0.12), transparent 62%);
  filter: blur(10px);
}

.nl-landing__network-field,
.nl-landing__network-field canvas {
  position: absolute;
  width: auto;
  height: auto;
}

.nl-landing__network-field {
  inset: -10% -4% 6% -6%;
  z-index: 0;
  opacity: 0.9;
  transform: none;
  pointer-events: none;
}

.nl-landing__network-field canvas {
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.nl-landing__visual-text {
  position: absolute;
  left: 17%;
  right: auto;
  bottom: 10px;
  z-index: 3;
  display: inline-grid;
  gap: 8px;
  min-width: min(300px, 78%);
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 20px;
  background: rgba(2, 4, 3, 0.045);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px) saturate(1.08);
  -webkit-backdrop-filter: blur(6px) saturate(1.08);
  text-decoration: none;
  pointer-events: auto;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nl-landing__visual-text strong {
  position: relative;
  z-index: 1;
  color: var(--landing-lime);
  font-size: clamp(30px, 5vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-shadow: 0 0 24px rgba(2, 4, 3, 0.8), 0 0 18px rgba(184, 255, 31, 0.18);
}

.nl-landing__visual-text span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  max-width: none;
  color: var(--landing-muted);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(2, 4, 3, 0.9);
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.nl-landing__telegram-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--landing-lime);
  fill: currentColor;
  filter: drop-shadow(0 0 10px rgba(184, 255, 31, 0.32));
}

.nl-landing__visual-text:hover,
.nl-landing__visual-text:focus-visible {
  border-color: rgba(184, 255, 31, 0.22);
  background: rgba(2, 4, 3, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18), 0 0 28px rgba(184, 255, 31, 0.08);
  transform: translateY(-2px);
}

.nl-landing__visual-text:hover span,
.nl-landing__visual-text:focus-visible span {
  color: var(--landing-lime);
  text-shadow: 0 0 24px rgba(184, 255, 31, 0.35);
}

.nl-landing__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 26px;
  background: rgba(2, 4, 3, 0.34);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.nl-landing__facts div {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--landing-line-soft);
}

.nl-landing__facts div:last-child {
  border-right: 0;
}

.nl-landing__facts span,
.nl-landing__choice-head span,
.nl-landing__summary-item span {
  color: var(--landing-lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-landing__facts strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.nl-landing__facts p {
  margin: 14px 0 0;
  color: var(--landing-muted);
  font-weight: 750;
  line-height: 1.55;
}

.nl-landing__pricing {
  padding: clamp(54px, 9vw, 112px) 0;
  scroll-margin-top: 120px;
}

.nl-landing__section-head {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 28px;
}

.nl-landing__pricing .nl-landing__section-head {
  width: min(880px, 100%);
  max-width: none;
  margin: 0 auto 22px;
}

.nl-landing__section-head h2,
.nl-landing__servers h2 {
  font-size: clamp(38px, 7vw, 76px);
  line-height: 0.9;
}

.nl-landing__section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.nl-landing__pricing .nl-landing__section-head h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 0.94;
}

.nl-landing__pricing .nl-landing__section-head p {
  max-width: 480px;
  font-size: 15px;
}

.nl-landing__builder {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.6vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: transparent;
}

.nl-landing__choice-group {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nl-landing__choice-group--term,
.nl-landing__summary {
  display: none;
}

.nl-landing__choice-group--term.is-visible {
  display: grid;
  padding-top: clamp(14px, 2vw, 20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: landingRise 0.38s ease both;
}

.nl-landing__choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nl-landing__choice-head strong {
  color: var(--landing-text);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.nl-landing__choice-head span {
  color: var(--landing-lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-landing__choice-selected {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.026);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nl-landing__choice-selected[hidden] {
  display: none;
}

.nl-landing__choice-selected:hover,
.nl-landing__choice-selected:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.052);
}

.nl-landing__choice-selected span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-landing__choice-selected small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nl-landing__choice-selected:hover small,
.nl-landing__choice-selected:focus-visible small {
  border-color: rgba(184, 255, 31, 0.34);
  color: var(--landing-lime);
  background: rgba(184, 255, 31, 0.075);
}

.nl-landing__choice-selected strong {
  overflow: hidden;
  color: var(--landing-lime);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nl-landing__choice-group.is-complete:not(.is-editing) .nl-landing__tier-grid,
.nl-landing__choice-group.is-complete:not(.is-editing) .nl-landing__term-grid {
  display: none;
}

.nl-landing__step-title {
  margin: 0;
  color: var(--landing-text);
  font-size: clamp(21px, 2.8vw, 28px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.nl-landing__tier-grid,
.nl-landing__term-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.page-home .nl-landing__tier-card,
.page-home .nl-landing__term-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  overflow: hidden;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  color: var(--landing-text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease;
}

.page-home .nl-landing__term-card {
  min-height: 62px;
}

.page-home .nl-landing__tier-card:hover,
.page-home .nl-landing__term-card:hover,
.page-home .nl-landing__tier-card:focus-visible,
.page-home .nl-landing__term-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
}

.page-home .nl-landing__tier-card.is-active,
.page-home .nl-landing__term-card.is-active {
  color: var(--landing-lime);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.085);
}

.nl-landing__row-main,
.nl-landing__row-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.nl-landing__row-meta {
  justify-items: end;
  text-align: right;
}

.page-home .nl-landing__tier-card strong,
.page-home .nl-landing__term-card strong {
  color: var(--landing-text);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-home .nl-landing__tier-card.is-active strong,
.page-home .nl-landing__term-card.is-active strong {
  color: var(--landing-text);
}

.page-home .nl-landing__tier-card.is-active .nl-landing__card-kicker,
.page-home .nl-landing__term-card.is-active .nl-landing__card-kicker,
.page-home .nl-landing__tier-card.is-active small,
.page-home .nl-landing__term-card.is-active small {
  color: var(--landing-muted);
}

.page-home .nl-landing__term-card strong {
  font-size: clamp(17px, 1.8vw, 21px);
}

.page-home .nl-landing__tier-card span:not(.nl-landing__card-kicker):not(.nl-landing__price-stack):not(.nl-landing__price-current),
.page-home .nl-landing__term-card span:not(.nl-landing__card-kicker):not(.nl-landing__price-stack):not(.nl-landing__price-current) {
  color: var(--landing-lime);
  font-size: 16px;
  font-weight: 950;
}

.page-home .nl-landing__tier-card.is-active span:not(.nl-landing__card-kicker):not(.nl-landing__price-stack):not(.nl-landing__price-current),
.page-home .nl-landing__term-card.is-active span:not(.nl-landing__card-kicker):not(.nl-landing__price-stack):not(.nl-landing__price-current) {
  color: var(--landing-lime);
}

.nl-landing__price-stack {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  color: var(--landing-lime);
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.nl-landing__price-current {
  color: var(--landing-lime) !important;
  text-shadow: 0 0 18px rgba(184, 255, 31, 0.18);
}

.page-home .nl-landing__tier-card .nl-landing__row-meta > span,
.page-home .nl-landing__term-card .nl-landing__price-current,
.page-home .nl-landing__summary-item--price .nl-landing__price-current {
  color: var(--landing-lime) !important;
}

.nl-landing__price-stack--summary {
  justify-content: flex-start;
  gap: 10px;
  font-size: clamp(23px, 2.7vw, 32px);
}

.nl-landing__price-stack--summary .nl-landing__old-price {
  font-size: clamp(13px, 1.4vw, 16px);
}

.nl-landing__price-stack--summary .nl-landing__price-current {
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.nl-landing__old-price {
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.page-home .nl-landing__tier-card.is-active:hover strong,
.page-home .nl-landing__term-card.is-active:hover strong,
.page-home .nl-landing__tier-card.is-active:focus-visible strong,
.page-home .nl-landing__term-card.is-active:focus-visible strong {
  color: var(--landing-text);
}

.page-home .nl-landing__tier-card small,
.page-home .nl-landing__term-card small {
  color: var(--landing-muted);
  font-size: 12px;
  font-weight: 850;
}

.nl-landing__card-kicker {
  color: var(--landing-muted);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nl-landing__summary {
  position: static;
  z-index: 6;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: center;
  width: min(880px, 100%);
  margin: 14px auto 0;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nl-landing__summary.is-visible {
  display: grid;
  animation: landingRise 0.38s ease both;
}

.nl-landing__summary-item {
  display: grid;
  gap: 3px;
  min-height: 48px;
  justify-content: start;
}

.nl-landing__summary-item strong {
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.nl-landing__summary-item--price strong {
  color: var(--landing-lime);
}

.nl-landing__summary .nl-landing__button {
  min-width: 210px;
}

.nl-landing__servers {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  justify-items: center;
  width: min(1180px, calc(100% - 16px));
  padding: 0 0 clamp(54px, 9vw, 110px);
  margin-top: clamp(-42px, -3vw, -18px);
}

.nl-landing__servers-head {
  display: none;
  width: var(--landing-width);
  justify-self: center;
}

.nl-landing__region-map {
  width: min(1120px, 100%);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 28px;
  color: var(--landing-text);
  background: transparent;
}

.nl-landing__map-stage {
  position: relative;
  overflow: visible;
  --map-pin-size: clamp(12px, 1.45vw, 20px);
  --map-cluster-pin-size: clamp(20px, 2.4vw, 32px);
  --map-pin-halo: clamp(3px, 0.45vw, 6px);
  --map-pin-touch-area: clamp(8px, 1.2vw, 14px);
  border-radius: 20px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.nl-landing__map-stage img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 20px 70px rgba(184, 255, 31, 0.08));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.nl-landing__map-marker {
  position: absolute;
  left: var(--marker-x);
  top: var(--marker-y);
  z-index: 3;
  display: block;
  transform: translate(-50%, -50%);
}

.nl-landing__map-pin {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--map-pin-size);
  height: var(--map-pin-size);
  padding: 0;
  border: 2px solid rgba(2, 4, 3, 0.92);
  border-radius: 999px;
  color: #061006;
  background: #f7fff0;
  box-shadow: 0 0 0 var(--map-pin-halo) rgba(184, 255, 31, 0.16), 0 0 26px rgba(247, 255, 240, 0.54);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nl-landing__map-pin::after {
  content: "";
  position: absolute;
  inset: calc(var(--map-pin-touch-area) * -1);
  border-radius: inherit;
}

.nl-landing__map-pin--cluster {
  width: var(--map-cluster-pin-size);
  height: var(--map-cluster-pin-size);
  border-color: rgba(2, 4, 3, 0.88);
  color: #061006;
  background: #f7fff0;
  box-shadow: 0 0 0 var(--map-pin-halo) rgba(184, 255, 31, 0.14), 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nl-landing__map-pin span {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 950;
  line-height: 1;
}

.nl-landing__map-marker:hover,
.nl-landing__map-marker:focus-within,
.nl-landing__map-marker.is-open {
  z-index: 8;
}

.nl-landing__map-marker:hover .nl-landing__map-pin,
.nl-landing__map-marker:focus-within .nl-landing__map-pin,
.nl-landing__map-marker.is-open .nl-landing__map-pin {
  transform: scale(1.12);
  box-shadow: 0 0 0 calc(var(--map-pin-halo) + 2px) rgba(184, 255, 31, 0.2), 0 0 34px rgba(184, 255, 31, 0.7);
}

.nl-landing__map-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  display: grid;
  gap: 8px;
  min-width: 210px;
  max-width: 280px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--landing-text);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.96);
  transform-origin: bottom center;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nl-landing__map-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.76);
  transform: translateX(-50%) rotate(45deg);
}

.nl-landing__map-marker:hover .nl-landing__map-popover,
.nl-landing__map-marker:focus-within .nl-landing__map-popover,
.nl-landing__map-marker.is-open .nl-landing__map-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nl-landing__map-popover-row {
  display: grid;
  gap: 2px;
}

.nl-landing__map-popover-row strong {
  color: var(--landing-text);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.nl-landing__map-popover-row small {
  color: var(--landing-lime);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.25;
}

.nl-landing__region-list {
  display: none;
}

.page-home .site-footer {
  width: var(--landing-width);
  border-top: 1px solid var(--landing-line-soft);
  padding-top: 22px;
}

@keyframes landingRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landingGlow {
  from {
    opacity: 0.58;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0.9;
    transform: translate3d(7vw, -3vh, 0) scale(1.08);
  }
}

@keyframes signalPulse {
  0%, 100% {
    opacity: 0.78;
    transform: scaleY(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.05);
  }
}

@media (max-width: 960px) {
  .nl-landing__hero,
  .nl-landing__servers {
    grid-template-columns: 1fr;
  }

  .nl-landing__hero {
    min-height: auto;
  }

  .nl-landing__hero-visual {
    position: relative;
    inset: auto;
    z-index: 1;
    min-height: 560px;
    grid-column: 1;
  }

  .nl-landing__network-field {
    inset: 4% -44% 8% -34%;
    opacity: 0.72;
    transform: none;
  }

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

  .nl-landing__facts div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--landing-line-soft);
  }

  .nl-landing__facts div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .page-home {
    --landing-width: min(100%, calc(100% - 24px));
  }

  .page-home .shell-main {
    padding-top: 76px;
  }

  .page-home .site-header {
    top: 0;
    border-radius: 0 0 20px 20px;
  }

  .nl-landing__hero {
    padding-top: 34px;
  }

  .nl-landing__actions,
  .nl-landing__choice-head {
    align-items: stretch;
    flex-direction: column;
  }

  .nl-landing__builder {
    padding: 16px;
    border-radius: 22px;
  }

  .nl-landing__step-title {
    font-size: clamp(21px, 6.4vw, 27px);
  }

  .nl-landing__choice-selected {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }

  .nl-landing__choice-selected span {
    grid-column: 1 / -1;
  }

  .nl-landing__choice-selected strong {
    font-size: clamp(19px, 5.8vw, 24px);
  }

  .nl-landing__button {
    width: 100%;
  }

  .page-home .nl-landing__tier-card,
  .page-home .nl-landing__term-card {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    min-height: 0;
    padding: 14px;
  }

  .nl-landing__row-meta {
    justify-items: start;
    text-align: left;
  }

  .page-home .nl-landing__tier-card small,
  .page-home .nl-landing__term-card small {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .nl-landing__hero-visual {
    min-height: 650px;
  }

  .nl-landing__visual-text {
    left: 8px;
    bottom: 24px;
    min-width: min(270px, calc(100% - 16px));
    padding: 15px 17px;
  }

  .nl-landing__summary {
    position: static;
    grid-template-columns: 1fr;
  }

  .nl-landing__summary .nl-landing__button {
    min-width: 0;
  }

  .nl-landing__visual-text {
    align-items: start;
    flex-direction: column;
  }

  .nl-landing__visual-text span {
    max-width: none;
    text-align: left;
  }

  .nl-landing__region-map {
    padding: 0;
    border-radius: 20px;
  }

  .nl-landing__servers-head {
    display: grid;
  }

  .nl-landing__map-stage {
    display: none;
  }

  .nl-landing__region-list {
    display: grid;
    gap: 8px;
  }

  .nl-landing__region-item {
    display: grid;
    gap: 4px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.095);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.026);
  }

  .nl-landing__region-item strong {
    color: var(--landing-text);
    font-size: 15px;
    font-weight: 950;
    line-height: 1.1;
  }

  .nl-landing__region-item span {
    color: var(--landing-muted);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.35;
  }

  .nl-landing__map-pin {
    box-shadow: 0 0 0 var(--map-pin-halo) rgba(184, 255, 31, 0.15), 0 0 18px rgba(184, 255, 31, 0.48);
  }

  .nl-landing__map-popover {
    min-width: 190px;
    padding: 10px;
  }

  .nl-landing__map-popover-row strong {
    font-size: 12px;
  }

  .nl-landing__map-popover-row small {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .nl-landing__hero-visual {
    display: none;
  }
}

@media (max-width: 420px) {
  .page-home {
    --landing-width: min(100%, calc(100% - 18px));
  }

  .nl-landing__title {
    font-size: clamp(42px, 13.8vw, 54px);
    line-height: 0.9;
    letter-spacing: -0.065em;
  }

  .nl-landing__builder,
  .nl-landing__facts div {
    padding: 14px;
  }

  .nl-landing__hero-visual {
    min-height: 640px;
  }

  .page-home .nl-landing__tier-card,
  .page-home .nl-landing__term-card {
    min-height: 76px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nl-landing__hero-copy,
  .nl-landing__hero-visual,
  .nl-landing__hero::before {
    animation: none;
  }

  .nl-landing__button::before,
  .page-home .nl-landing__tier-card,
  .page-home .nl-landing__term-card {
    transition: none;
  }
}

.site-body--vk.page-home .site-header {
  min-height: 58px;
  padding: 8px 12px;
  border-radius: 0 0 18px 18px;
}

.site-body--vk.page-home .site-brand {
  gap: 9px;
}

.site-body--vk.page-home .site-brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.site-body--vk.page-home .site-brand__mark img {
  width: 19px;
  height: 19px;
}

.site-body--vk.page-home .site-brand__copy strong {
  font-size: 0.9rem;
}

.site-body--vk.page-home .site-brand__copy small {
  font-size: 0.72rem;
}

.site-body--vk.page-home .site-header__actions .button-primary {
  min-height: 40px;
  padding-inline: 13px;
  font-size: 0.88rem;
}

.site-body--vk.page-home .shell-main {
  padding-top: 58px;
}

.site-body--vk.page-home .nl-landing__hero {
  min-height: min(680px, calc(100svh - 64px));
  padding-top: clamp(20px, 4vw, 38px);
  padding-bottom: clamp(26px, 5vw, 52px);
}

.site-body--vk.page-home .nl-landing__eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.site-body--vk.page-home .nl-landing__title {
  max-width: 620px;
  font-size: clamp(40px, 7.4vw, 76px);
  line-height: 0.88;
  letter-spacing: -0.066em;
}

.site-body--vk.page-home .nl-landing__lead {
  max-width: 500px;
  margin-top: 16px;
  font-size: clamp(14px, 1.7vw, 17px);
  line-height: 1.45;
}

.site-body--vk.page-home .nl-landing__actions {
  margin-top: 22px;
}

.site-body--vk.page-home .nl-landing__hero-visual {
  transform: scale(0.92);
  transform-origin: center right;
}

@media (max-width: 760px) {
  .site-body--vk.page-home .shell-main {
    padding-top: 54px;
  }

  .site-body--vk.page-home .nl-landing__hero {
    min-height: auto;
    padding-top: 18px;
  }

  .site-body--vk.page-home .nl-landing__title {
    font-size: clamp(38px, 12vw, 52px);
  }

  .site-body--vk.page-home .nl-landing__hero-visual {
    transform: none;
  }
}
