/* MEGA — deep black + orange glow */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050508;
  --bg-alt: #0c0c10;
  --panel: #ffffff;
  --panel-soft: #f8f8fc;
  --accent: #ff9800;
  --accent-bright: #ffb300;
  --accent-soft: #ffc247;
  --accent-dark: #1a1a1a;
  --text-main: #1a1a1a;
  --text-muted: #5c5c68;
  --success: #22c55e;

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.2);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 56px rgba(255, 152, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Nunito', 'Inter', system-ui, -apple-system, sans-serif;
  background: 
    radial-gradient(1100px 700px at 100% -15%, rgba(255, 142, 0, 0.18), transparent 58%),
    radial-gradient(850px 550px at -10% 115%, rgba(255, 112, 0, 0.14), transparent 62%),
    linear-gradient(160deg, #050507 0%, #0a0b0f 45%, #070709 100%);
  color: #f0f0f5;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, black 40%, transparent 88%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(700px 420px at 88% 10%, rgba(255, 152, 0, 0.22), transparent 70%),
    radial-gradient(620px 380px at 12% 88%, rgba(255, 120, 0, 0.14), transparent 74%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden;
}

/* Background variant B (toggle) */
body.page.bg-v2 {
  background:
    radial-gradient(1200px 800px at 50% -20%, rgba(255, 130, 0, 0.18), transparent 55%),
    radial-gradient(900px 620px at 95% 80%, rgba(255, 80, 0, 0.16), transparent 62%),
    linear-gradient(180deg, #030305 0%, #09090d 48%, #050507 100%);
}

body.page.bg-v2::before {
  background-image: none;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0) 58%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 22px
    );
  opacity: 0.25;
  mask-image: none;
}

body.page.bg-v2::after {
  background:
    radial-gradient(760px 460px at 12% 16%, rgba(255, 145, 0, 0.2), transparent 70%),
    radial-gradient(520px 300px at 80% 86%, rgba(255, 120, 0, 0.14), transparent 72%);
  opacity: 0.8;
}

/* Smooth overlay */
.page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 35%, rgba(255, 152, 0, 0.03) 100%);
  opacity: 0.65;
}

/* Soft ambient layer */
.page::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 152, 0, 0.05), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 120, 0, 0.04), transparent 52%);
  opacity: 0.85;
}

/* Mobile: keep lightweight */
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  body::before { opacity: 0.22; }
  body::after { opacity: 0.7; }
  .page::before, .page::after { opacity: 0.45; }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header — OMG: мягкий, с жёлтым акцентом */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.98) 0,
    rgba(5, 5, 8, 0.92) 70%,
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.5), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.95;
}

.logo-square {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffb300 0, #ff8c00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 34px rgba(255, 140, 0, 0.42);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo:hover .logo-square {
  transform: scale(1.02);
  box-shadow: 0 14px 38px rgba(255, 152, 0, 0.54);
}

.logo-square span {
  font-weight: 900;
  color: #000000;
  font-size: 1.22rem;
  letter-spacing: -0.06em;
  transform: translateY(-1px) skewX(-12deg);
}

/* 3D logo — мягкий фон, едва заметная текстура */
.mega-bg-logo-subtle {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-bg-model-subtle {
  width: 140%;
  max-width: none;
  height: min(95vh, 750px);
  margin-left: -20%;
  opacity: 0.14;
  --poster-color: transparent;
  filter: sepia(0.7) saturate(2.1) hue-rotate(2deg);
  transition: opacity 0.4s ease;
}

.mega-bg-logo-subtle:hover .mega-bg-model-subtle {
  opacity: 0.2;
}

.mega-slashes-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(14rem, 56vw, 40rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 152, 0, 0.16);
  text-shadow: 0 0 80px rgba(255, 132, 0, 0.45), 0 0 180px rgba(255, 120, 0, 0.22);
  transform: skewX(-12deg);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Neon mode (default ON) */
body.page:not(.neon-off) .logo-square {
  box-shadow:
    0 0 0 1px rgba(255, 170, 0, 0.2),
    0 10px 30px rgba(255, 132, 0, 0.5),
    0 0 24px rgba(255, 170, 0, 0.55),
    0 0 56px rgba(255, 120, 0, 0.35);
}

body.page:not(.neon-off) .logo-text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.08), 0 0 26px rgba(255, 145, 0, 0.35);
}

body.page:not(.neon-off) .mega-slashes-bg {
  color: rgba(255, 162, 20, 0.2);
  text-shadow:
    0 0 60px rgba(255, 145, 0, 0.55),
    0 0 140px rgba(255, 120, 0, 0.35),
    0 0 240px rgba(255, 95, 0, 0.2);
}

body.page.neon-off .logo-square,
body.page.neon-off .logo-text,
body.page.neon-off .mega-slashes-bg {
  text-shadow: none !important;
  box-shadow: none !important;
}

.bg-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 20px 0 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 150, 20, 0.32);
  background:
    linear-gradient(140deg, rgba(22, 23, 30, 0.92), rgba(10, 10, 14, 0.9)),
    radial-gradient(circle at 18% 20%, rgba(255, 155, 30, 0.14), transparent 55%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(255, 136, 0, 0.12);
  backdrop-filter: blur(14px);
}

.bg-switch-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bg-switch-btn:hover {
  border-color: rgba(255, 152, 0, 0.48);
  background: linear-gradient(145deg, rgba(255, 170, 30, 0.2), rgba(255, 120, 0, 0.2));
  transform: translateY(-1px);
}

.bg-switch-btn.is-active {
  border-color: rgba(255, 152, 0, 0.65);
  background: linear-gradient(145deg, rgba(255, 180, 40, 0.34), rgba(255, 110, 0, 0.4));
  box-shadow: 0 0 0 1px rgba(255, 164, 44, 0.2), 0 8px 20px rgba(255, 132, 0, 0.25);
}

.bg-switch-btn[data-neon] {
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  padding: 10px 46px 10px 14px;
  border-radius: 999px;
}

.bg-switch-btn[data-neon]::before {
  content: "⚡";
  font-size: 0.82rem;
  line-height: 1;
  color: #ffcd6e;
  text-shadow: 0 0 10px rgba(255, 176, 65, 0.65);
}

.bg-switch-btn[data-neon]::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #8a8f99;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
}

.bg-switch-btn[data-neon].is-active::before {
  color: #ffad22;
  text-shadow: 0 0 12px rgba(255, 173, 34, 0.95), 0 0 24px rgba(255, 132, 0, 0.55);
}

.bg-switch-btn[data-neon].is-active::after {
  background: #ff9f1a;
  box-shadow: 0 0 12px rgba(255, 159, 26, 0.95), 0 0 26px rgba(255, 126, 0, 0.6);
  animation: neon-dot-pulse 1.6s ease-in-out infinite;
}

.bg-switch-btn[data-neon]:not(.is-active)::after {
  background: #646975;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@keyframes neon-dot-pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.08); }
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-primary {
  background: linear-gradient(145deg, var(--accent-bright) 0, var(--accent) 100%);
  color: var(--accent-dark);
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.34);
}

.nav-primary:hover {
  background: linear-gradient(145deg, #ffbe2e 0, var(--accent-bright) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 132, 0, 0.42);
}

/* Hero — OMG: плавающие декоративные орбы */
.hero {
  padding: 100px 0 56px;
  position: relative;
  overflow: hidden;
}

img,
svg,
video,
canvas,
model-viewer {
  max-width: 100%;
}

.mega-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mega-hero-orb-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.14) 0, transparent 70%);
  filter: blur(2px);
}

.mega-hero-orb-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: -40px;
  background: radial-gradient(circle, rgba(255, 132, 0, 0.12) 0, transparent 70%);
  filter: blur(3px);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  pointer-events: none;
}

.hero-author-mark {
  display: inline-block;
  width: 58px;
  height: 58px;
  margin-top: 18px;
  opacity: 0.72;
  filter: drop-shadow(0 0 14px rgba(255, 152, 0, 0.25));
}

.hero-inner .btn,
.hero-inner a,
.hero-inner button,
.hero-inner aside,
.hero-inner .endpoint-btn,
.hero-inner .endpoint-action-btn,
.hero-inner .tor-copy-block {
  pointer-events: auto;
}

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "✦ ";
  color: var(--accent);
  margin-right: 4px;
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
  text-shadow: 0 0 40px rgba(255, 200, 0, 0.15);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.hero-badge {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 200, 0, 0.35);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 200, 0, 0.1);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent-bright) 0, var(--accent) 100%);
  color: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.38);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #ffc247 0, var(--accent-bright) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 120, 0, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Hero card */
.hero-card {
  background: linear-gradient(165deg, rgba(18, 19, 24, 0.95) 0, rgba(12, 13, 18, 0.95) 100%);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  padding: 24px 22px 20px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 132, 0, 0.18);
  border: 1px solid rgba(255, 132, 0, 0.22);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.endpoint-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.endpoint {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.endpoint:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 152, 0, 0.3);
}

.endpoint-clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.endpoint-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.endpoint-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.62);
}

.endpoint-url {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.endpoint-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
}

.endpoint-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.endpoint-btn:hover {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: transparent;
}

.endpoint-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.endpoint-action-enter {
  background: linear-gradient(145deg, var(--accent-bright) 0, var(--accent) 100%);
  color: var(--accent-dark);
  box-shadow: 0 2px 12px rgba(255, 140, 0, 0.34);
}

.endpoint-action-enter:hover {
  background: linear-gradient(145deg, #ffbe2e 0, var(--accent-bright) 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 120, 0, 0.4);
}

.endpoint-action-copy {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.endpoint-action-copy:hover {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: transparent;
}

.endpoint-action-copy.copied {
  background: rgba(34, 197, 94, 0.9);
  color: #fff;
  border-color: transparent;
}

.endpoint-url-tor {
  font-size: 0.85rem;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tor-copy-block {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(255, 200, 0, 0.08);
  border: 1px dashed rgba(255, 200, 0, 0.35);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tor-copy-block:hover {
  background: rgba(255, 200, 0, 0.15);
  border-color: rgba(255, 200, 0, 0.5);
}

.tor-copy-block.copied {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
}

.tor-copy-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.tor-copy-url {
  font-size: 0.8rem;
  font-family: monospace;
  color: var(--text-main);
  word-break: break-all;
  background: none;
  padding: 0;
}

.endpoint-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 56px 0 48px;
}

.section-header {
  margin-bottom: 28px;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.section-lead {
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

/* Cards */
.card {
  background: linear-gradient(165deg, rgba(16, 17, 22, 0.95) 0, rgba(10, 11, 16, 0.95) 100%);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  border: 1px solid rgba(255, 132, 0, 0.2);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
  border-color: rgba(255, 152, 0, 0.42);
  box-shadow: 0 24px 48px rgba(255, 132, 0, 0.16);
  transform: translateY(-4px) scale(1.01);
}

.card a {
  transition: color 0.2s ease;
}

.card a:hover {
  color: var(--accent-bright);
}

.card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 194, 71, 0.92);
}

.card-title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.35;
  color: #ffffff;
}

.card-title a {
  color: inherit;
}

.card-text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.card-footer {
  margin-top: 8px;
}

/* Skip-link — доступность */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

/* Stats section */
.stats-section {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 16px;
}
.stat-number {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* Card icon */
.card-icon {
  margin-bottom: 12px;
}
.card-icon img {
  width: 36px;
  height: 36px;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

/* Section more */
.section-more {
  text-align: center;
  margin-top: 36px;
}

/* VPN notice — под шапкой */
.vpn-notice {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 20px;
  background: rgba(255, 75, 106, 0.95);
  color: #000;
  font-size: 0.88rem;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.vpn-notice a { color: #000; font-weight: 600; text-decoration: underline; }
.vpn-notice-hidden { transform: translateY(-100%); pointer-events: none; }
.page-with-vpn-notice .hero { padding-top: 130px; }

/* Links section — link-box, intro, related */
.section-title-centered { text-align: center; position: relative; padding-top: 24px; }
.section-title-centered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,204,0,0.6), transparent);
}
.links-content-wrapper { max-width: 900px; margin: 0 auto; }
.intro-text-box {
  margin-bottom: 28px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.intro-text-box p { margin: 0 0 12px; color: var(--muted); line-height: 1.65; }
.intro-text-box p:last-child { margin-bottom: 0; }
.link-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  transition: transform 0.2s ease;
}
.link-box:hover { transform: translateY(-2px); }


.link-box-copy {
  cursor: pointer;
  position: relative;
}

.link-box-copy-feedback {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.link-box-copy.copied .link-box-copy-feedback {
  opacity: 1;
}

.link-box-copy.copied {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.06));
  border-color: rgba(34, 197, 94, 0.4);
}
.link-box h3 { margin: 0 0 12px; font-size: 1.15rem; }
.link-icon { margin-right: 8px; }
.link-primary { color: #ffcc00; font-weight: 600; }
.link-primary:hover { color: #ffdd44; }
.link-inline { color: var(--accent-soft); }
.link-inline:hover { color: var(--accent-strong); }
.link-highlight { color: #ffcc00 !important; }
.onion-code {
  background: rgba(0,0,0,0.3);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
}
.link-box-primary {
  background: linear-gradient(180deg, rgba(255,204,0,0.1), rgba(255,204,0,0.04));
  border-color: rgba(255,204,0,0.3);
}
.link-box-action { margin-top: 16px; text-align: center; }
.related-materials-box {
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.related-materials-box h3 { margin: 0 0 20px; text-align: center; font-size: 1.25rem; }
.related-materials-list { display: grid; gap: 12px; margin-bottom: 20px; }
.related-materials-list p { margin: 0; }
.related-materials-list a { color: var(--accent-soft); text-decoration: none; transition: color 0.2s; }
.related-materials-list a:hover { color: #ffcc00; }

/* CTA section */
.cta-section {
  background: linear-gradient(180deg, rgba(255,200,0,0.08) 0, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent);
}
.cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Footer — OMG: мягкий акцент */
.site-footer {
  margin-top: auto;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-inner {
  position: relative;
}

.site-footer .footer-inner::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 200, 0, 0.4), transparent);
}

.mega-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 200, 0, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.mega-footer-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: mega-pulse 2s ease-in-out infinite;
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-author-mark {
  width: 18px;
  height: 18px;
  opacity: 0.72;
  filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.35));
}

@keyframes mega-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

/* ========== ARTICLE PAGES ========== */
.page-main .hero {
  padding: 88px 0 48px;
  position: relative;
}

.page-main .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,200,0,0.4), transparent);
  border-radius: 2px;
}

.page-main .hero .container {
  max-width: 720px;
}

.page-main .hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
}

.page-main .hero .hero-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.breadcrumb {
  padding: 20px 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-soft);
}

.breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.5;
}

.page-main .section .card {
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
}

.page-main .section .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255,200,0,0.4), rgba(255,200,0,0.1));
  border-radius: 2px 0 0 2px;
}

.page-main .section .card .card-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  margin-bottom: 4px;
}

.page-main .section .card .card-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.page-main .section .card .card-text {
  font-size: 0.96rem;
  line-height: 1.7;
}

.page-main .section .card .card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Кнопки в карточках — всегда видны на светлом фоне */
.page-main .section .card .card-footer .btn-outline {
  color: #b8860b;
  border-color: rgba(184, 134, 11, 0.5);
  background: rgba(255, 200, 0, 0.08);
}

.page-main .section .card .card-footer .btn-outline:hover {
  color: #8b6914;
  border-color: rgba(184, 134, 11, 0.7);
  background: rgba(255, 200, 0, 0.18);
}

.article-cta {
  margin-top: 56px;
  padding: 36px 40px;
  background: linear-gradient(165deg, rgba(17,18,24,.95) 0, rgba(10,11,16,.95) 100%);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,152,0,0.24);
  text-align: center;
}

.article-cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}

.article-cta-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}

.article-cta .btn {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.article-cta .btn:hover {
  background: var(--accent);
  color: var(--accent-dark);
}

.checklist-list {
  margin: 10px 0 0;
  padding-left: 20px;
  color: rgba(255, 214, 153, 0.92);
  line-height: 1.72;
}

.checklist-list li {
  margin-bottom: 6px;
}

.related-articles {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.related-articles-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.related-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-articles-list a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s ease;
}

.related-articles-list a:hover {
  background: rgba(255,200,0,0.15);
  color: #fff;
  border-color: rgba(255,200,0,0.3);
}

.articles-list {
  max-width: 820px;
  margin: 0 auto;
}

.article-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 30px;
  margin-bottom: 16px;
  background: linear-gradient(165deg, rgba(17,18,24,.95) 0, rgba(10,11,16,.95) 100%);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,152,0,.18);
  box-shadow: 0 8px 26px rgba(0,0,0,.28);
  transition: all 0.3s ease;
}

.article-item:hover {
  border-color: rgba(255,152,0,.34);
  transform: translateX(4px);
  box-shadow: 0 10px 34px rgba(255,132,0,.14);
}

.article-item-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,200,0,0.08);
  border-radius: var(--radius-md);
}

.article-item-body {
  flex: 1;
  min-width: 0;
}

.article-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.article-item-title a {
  color: #fff;
  transition: color 0.2s ease;
}

.article-item-title a:hover {
  color: #ffb347;
}

.article-item-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255,255,255,.76);
  margin-bottom: 14px;
}

.article-item-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8860b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.article-item-link:hover {
  color: #8b6914;
}

.article-item-link::after {
  content: "→";
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.article-back:hover {
  background: rgba(255,200,0,0.15);
  color: #fff;
  border-color: rgba(255,200,0,0.3);
  transform: translateX(-2px);
}

/* ========== OMG VSE-STATI — группировка по разделам ========== */
.hero-vse-stati {
  padding: 72px 0 48px;
}

.hero-vse-stati .hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent-soft);
}

.vse-stati-section {
  padding: 32px 0 64px;
}

.vse-stati-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vse-stati-block {
  background: linear-gradient(165deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.02) 100%);
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  border: 1px solid rgba(255, 200, 0, 0.15);
  transition: all 0.3s ease;
}

.vse-stati-block:hover {
  border-color: rgba(255, 200, 0, 0.35);
  box-shadow: 0 12px 40px rgba(255, 200, 0, 0.08);
}

.vse-stati-block-wide {
  grid-column: span 2;
}

.vse-stati-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 200, 0, 0.2);
}

.vse-stati-block-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.vse-stati-block-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-soft);
  margin: 0;
  letter-spacing: 0.02em;
}

.vse-stati-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vse-stati-links li {
  margin-bottom: 10px;
}

.vse-stati-links li:last-child {
  margin-bottom: 0;
}

.vse-stati-links a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}

.vse-stati-links a:hover {
  background: rgba(255, 200, 0, 0.15);
  color: #fff;
  padding-left: 20px;
}

.vse-stati-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vse-stati-links-inline li {
  margin-bottom: 0;
}

.vse-stati-links-inline a {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vse-stati-links-inline a:hover {
  background: rgba(255, 200, 0, 0.2);
  border-color: rgba(255, 200, 0, 0.3);
}

.vse-stati-cta {
  text-align: center;
  margin-top: 48px;
}

.vse-stati-cta .btn-primary {
  background: linear-gradient(145deg, #ffd633 0, #ffc800 100%);
  color: var(--accent-dark);
}

.vse-stati-cta .btn-primary:hover {
  background: linear-gradient(145deg, #ffe066 0, #ffd633 100%);
}

@media (max-width: 700px) {
  .vse-stati-grid {
    grid-template-columns: 1fr;
  }

  .vse-stati-block-wide {
    grid-column: span 1;
  }

  .vse-stati-links-inline {
    flex-direction: column;
  }
}

.page-main .section .container {
  max-width: 1160px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 88px;
  }

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

  .nav {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }

  .article-item {
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }

  .article-item-num {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .ssylka-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* ========== OMG SSYLKA — bento grid, featured + 2 карточки ========== */
.page-ssylka .hero-ssylka {
  padding: 80px 0 48px;
}

.section-ssylka {
  padding-top: 24px;
}

.ssylka-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.ssylka-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ssylka-card {
  background: linear-gradient(165deg, rgba(17,18,24,.95) 0, rgba(10,11,16,.95) 100%);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  border: 1px solid rgba(255,152,0,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ssylka-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(255,200,0,0.15);
}

.ssylka-card-featured {
  background: linear-gradient(145deg, rgba(22,23,29,.97) 0, rgba(12,13,18,.95) 100%);
  border-color: rgba(255,152,0,.35);
  box-shadow: 0 16px 48px rgba(255,132,0,.16);
}

.ssylka-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,200,0,0.15) 0, transparent 70%);
  pointer-events: none;
}

.ssylka-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #b8860b;
  margin-bottom: 12px;
}

.ssylka-card-url-tor,
.card-title-tor {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ssylka-card-url {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  word-break: break-all;
}

.ssylka-card-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin: 0 0 24px;
  flex: 1;
}

.btn-ssylka-featured {
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn-ssylka-card {
  color: #b8860b;
  border-color: rgba(184,134,11,0.5);
  background: rgba(255,200,0,0.08);
}

.btn-ssylka-card:hover {
  background: rgba(255,200,0,0.18);
  border-color: rgba(184,134,11,0.7);
}

.ssylka-hint {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.ssylka-hint code {
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
}

/* ========== OMG VSE-STATI — карточная сетка с тегами ========== */
.page-vse-stati .hero-compact {
  padding: 72px 0 40px;
}

.page-vse-stati .hero-subtitle {
  margin-bottom: 0;
}

.vse-stati-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.vse-stati-card {
  display: block;
  background: linear-gradient(165deg, rgba(17,18,24,.95) 0, rgba(10,11,16,.95) 100%);
  color: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  border: 1px solid rgba(255,152,0,.2);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.vse-stati-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255,200,0,0.2);
  border-color: rgba(255,200,0,0.4);
}

.vse-stati-card-featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(22,23,29,.97) 0, rgba(12,13,18,.95) 100%);
  border-color: rgba(255,152,0,.3);
  padding: 32px 36px;
}

.vse-stati-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #b8860b;
  margin-bottom: 10px;
}

.vse-stati-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.35;
}

.vse-stati-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,.74);
  margin: 0;
  line-height: 1.5;
}

.vse-stati-back {
  margin-top: 56px;
  text-align: center;
}

.vse-stati-back .article-back {
  color: rgba(255,255,255,0.9);
}

.vse-stati-back .article-back:hover {
  color: var(--accent-soft);
}

@media (max-width: 700px) {
  .vse-stati-card-featured {
    grid-column: span 1;
  }
}

/* ========== VSE-STATI REDESIGN ========== */
.page-vse-stati .hero-vse-stati-modern {
  padding: 82px 0 44px;
  position: relative;
}

.page-vse-stati .vse-neon-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-vse-stati .vse-mega-slashes {
  font-size: clamp(15rem, 62vw, 44rem);
  opacity: 0.26;
  text-shadow: 0 0 90px rgba(255, 136, 0, 0.56), 0 0 220px rgba(255, 110, 0, 0.28);
}

.page-vse-stati .hero-vse-stati-modern .container {
  position: relative;
  z-index: 1;
}

.page-vse-stati .vse-hero-panel {
  max-width: 860px;
  padding: 24px 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 140, 0, 0.26);
  background: linear-gradient(145deg, rgba(15, 16, 22, 0.86), rgba(10, 11, 16, 0.82));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.33);
}

.page-vse-stati .vse-kpi-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-vse-stati .vse-kpi-card {
  display: block;
  padding: 14px 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 150, 20, 0.24);
  background: linear-gradient(150deg, rgba(20, 21, 28, 0.9), rgba(12, 13, 19, 0.88));
  transition: all .2s ease;
}

.page-vse-stati .vse-kpi-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 152, 0, 0.46);
  box-shadow: 0 10px 24px rgba(255, 132, 0, 0.16);
}

.page-vse-stati .vse-kpi-tag {
  display: inline-block;
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #ffcc87;
  margin-bottom: 8px;
}

.page-vse-stati .vse-kpi-title {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.page-vse-stati .vse-kpi-desc {
  display: block;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.page-vse-stati .hero-vse-stati-modern .hero-title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.6vw, 3.05rem);
  color: #fff;
}

.page-vse-stati .hero-vse-stati-modern .hero-subtitle {
  max-width: 64ch;
  font-size: 1.03rem;
  line-height: 1.68;
}

.page-vse-stati .vse-stati-section {
  padding-top: 26px;
}

.page-vse-stati .vse-stati-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.page-vse-stati .vse-stati-block {
  background: linear-gradient(165deg, rgba(17, 18, 24, 0.95) 0, rgba(11, 12, 18, 0.93) 100%);
  border: 1px solid rgba(255, 136, 0, 0.2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.page-vse-stati .vse-stati-block:nth-child(1) { border-color: rgba(255, 149, 0, 0.3); }
.page-vse-stati .vse-stati-block:nth-child(2) { border-color: rgba(255, 119, 0, 0.28); }
.page-vse-stati .vse-stati-block:nth-child(3) { border-color: rgba(255, 170, 0, 0.24); }
.page-vse-stati .vse-stati-block:nth-child(4) { border-color: rgba(255, 132, 0, 0.3); }

.page-vse-stati .vse-stati-block:hover {
  border-color: rgba(255, 152, 0, 0.4);
  box-shadow: 0 14px 34px rgba(255, 132, 0, 0.16);
}

.page-vse-stati .vse-stati-block-title {
  color: #ffd08b;
}

.page-vse-stati .vse-stati-block-lead {
  margin: 6px 0 0;
  font-size: .84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.page-vse-stati .vse-stati-links a {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.page-vse-stati .vse-stati-links a:hover {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 152, 0, 0.3);
}

@media (max-width: 900px) {
  .page-vse-stati .vse-hero-panel {
    padding: 20px 18px 16px;
  }

  .page-vse-stati .vse-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-vse-stati .vse-stati-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-vse-stati .vse-kpi-grid {
    grid-template-columns: 1fr;
  }
}
