/* Оболочка заглушек поддоменов pavljenko.ru — язык сайта: чёрный фон,
   сетка из точек со звёздами (как баннер и подвал), салатовый акцент.
   Живёт в Файлах InSales (CDN), страницы-заглушки на VM подключают её по ссылке. */
:root { --sp-accent: #96E354; --sp-bg: #050505; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; background: var(--sp-bg); color: #EDEDED;
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}
.sp-stub {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.sp-stub__px {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; stroke: var(--sp-accent); opacity: 0.55;
}
.sp-stub__px path { fill: none; stroke-width: 0.68; }
.sp-stub__px .gd { stroke-dasharray: 0 2; stroke-linecap: round; stroke-width: 1.06; }
.sp-stub__px .st path { fill: var(--sp-bg); stroke-linejoin: round; }
.sp-stub__card { position: relative; z-index: 1; text-align: center; padding: 48px 24px; }
.sp-stub__brand {
  color: #8F8F8F; text-decoration: none; font-size: 14px; letter-spacing: 0.06em;
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-stub__brand:hover { color: #FFFFFF; }
.sp-stub__title {
  margin: 18px 0 10px; font-size: clamp(34px, 7vw, 64px);
  font-weight: 700; color: #FFFFFF; line-height: 1.1;
}
.sp-stub__note { margin: 0 0 32px; color: #8F8F8F; }
.sp-stub__back {
  display: inline-block; color: var(--sp-accent); text-decoration: none;
  border: 1px solid var(--sp-accent); border-radius: 999px; padding: 10px 24px;
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-stub__back:hover {
  background: var(--sp-accent); color: var(--sp-bg);
  box-shadow: 0 0 26px rgba(150, 227, 84, 0.5);
}
@media (prefers-reduced-motion: reduce) {
  .sp-stub__brand, .sp-stub__back { transition: none; }
}
