/* =========================================================
   SECURITY CREDIT · Кредит Безопасности
   Брутально-редакционный стиль журнальной обложки
   ========================================================= */

:root {
  --red: #b8181d;
  --red-deep: #8d1115;
  --ink: #0a0a0a;
  --ink-2: #16161a;
  --paper: #f4efe7;
  --paper-2: #ece5d6;
  --paper-3: #ddd4c0;
  --rule: #1c1c1f;
  --muted: #6f6a60;
  --green: #1f9d54;
  --cyan: #2c7da0;
  --hud: #3df27a;

  --display: "Oswald", "Bebas Neue", "Helvetica Neue", Arial, sans-serif;
  --display-alt: "Bebas Neue", "Oswald", sans-serif;
  --serif: "PT Serif", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1320px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===================== ВЕРХНЯЯ ПЛАШКА ===================== */
.topstrip {
  background: var(--ink);
  color: #cfc8b9;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
}
.topstrip__row {
  display: flex; align-items: center; gap: 22px;
  height: 30px; overflow: hidden; white-space: nowrap;
}
.topstrip__item { opacity: .85; }
.topstrip__item--push { margin-left: auto; }
.topstrip .caret { color: var(--red); margin: 0 4px; }
.topstrip__live { color: var(--hud); }
.topstrip__live .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--hud); margin-right: 6px;
  box-shadow: 0 0 10px var(--hud);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.4); opacity: .55; } }

/* ===================== ШАПКА ===================== */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.masthead__row {
  display: flex; align-items: center;
  height: 64px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__bar { width: 8px; height: 28px; background: var(--red); display: inline-block; }
.brand__cyr {
  font-family: var(--display); font-weight: 700;
  letter-spacing: .04em; font-size: 18px;
}
.brand__lat {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: .14em;
  border-left: 1px solid var(--ink); padding-left: 12px;
}

.nav {
  margin-left: auto; display: flex; align-items: center; gap: 22px;
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: .08em; font-size: 14px; font-weight: 500;
}
.nav a { padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s; }
.nav a:hover { border-bottom-color: var(--red); }
.nav__cta {
  background: var(--ink); color: var(--paper);
  padding: 8px 14px !important;
  border: 0;
}
.nav__cta:hover { background: var(--red); border-bottom-color: var(--red) !important; }
.lang {
  background: transparent; border: 1px solid var(--ink);
  padding: 6px 10px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0;
  transition: background .15s, color .15s;
}
.lang:hover { background: var(--ink); color: var(--paper); }
.lang__active { color: var(--red); font-weight: 700; }
.lang__sep { opacity: .55; }
.lang__alt { opacity: .65; }
.lang:hover .lang__active { color: #ff6b6b; }
.lang:hover .lang__sep,
.lang:hover .lang__alt { opacity: .8; }

/* ===================== ОБЛОЖКА ===================== */
.cover {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.cover__bg { position: absolute; inset: 0; z-index: 0; }
.cover__city { position: absolute; inset: 0; }
.cover__city svg { width: 100%; height: 100%; opacity: .85; }

/* Грейн / шум */
.cover__noise {
  position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: .18;
  background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.5) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
}
/* Сканлайн */
.cover__scan {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: .25;
  background: repeating-linear-gradient(180deg,
    rgba(255,255,255,.04) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
/* Виньетка/градиент */
.cover__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 80%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.0) 25%, rgba(0,0,0,.65) 90%);
  z-index: 3;
}

/* Сетка-блокнот поверх */
.cover__grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .07;
  background:
    linear-gradient(to right, rgba(255,255,255,.5) 1px, transparent 1px) 0 0/80px 80px,
    linear-gradient(to bottom, rgba(255,255,255,.5) 1px, transparent 1px) 0 0/80px 80px;
}

/* Силуэт фигуры в плаще */
.cover__figure {
  position: absolute; right: -3vw; bottom: 0; height: 78vh;
  z-index: 6; pointer-events: none;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.6));
}
.cover__figure svg { height: 100%; width: auto; }

/* Слой контента поверх */
.cover__layer {
  position: relative; z-index: 10;
  min-height: 100vh;
  padding: 32px 28px 80px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 40px;
}

/* ЛОГО-БЛОК */
.logobox {
  background: var(--red);
  color: #fff;
  display: inline-block;
  padding: 18px 22px 16px;
  width: clamp(300px, 38vw, 460px);
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.logobox__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: .92;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.logobox__lat {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: .04em;
  margin-top: 6px;
  text-transform: uppercase;
}
.logobox__rule {
  height: 1px; background: rgba(255,255,255,.55);
  margin: 12px 0 10px;
}
.logobox__tag {
  font-family: var(--display);
  font-size: 13px; line-height: 1.25;
  letter-spacing: .03em;
  text-transform: none;
  font-weight: 400;
  opacity: .95;
}

.cover__layer > .logobox { grid-row: 1; justify-self: start; }

/* Дата выпуска */
.issuedate {
  grid-row: 1; justify-self: end; align-self: start;
  text-align: right;
  font-family: var(--display); text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.6);
}
.issuedate__big {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: .04em;
}
.issuedate__num {
  display: block;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .25em;
  margin-top: 4px;
  opacity: .85;
}

/* HUD-метки */
.hud {
  position: absolute; z-index: 8;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
}
.hud__line {
  width: 60px; height: 1px; background: var(--hud);
  position: relative;
}
.hud__line::before, .hud__line::after {
  content:""; position: absolute; width: 6px; height: 6px;
  border: 1px solid var(--hud); top: -3px;
}
.hud__line::before { left: -1px; background: var(--hud); }
.hud__line::after  { right: -1px; }
.hud__tag {
  font-family: var(--mono); font-size: 10px;
  background: rgba(0,0,0,.65); padding: 4px 8px;
  color: #fff; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
}
.hud--ctrl .hud__line, .hud--ctrl .hud__line::before, .hud--ctrl .hud__line::after { background: var(--red); border-color: var(--red); color: var(--red); }
.hud--ctrl .hud__tag { color: #ffb3b3; }
.hud--cypher .hud__line, .hud--cypher .hud__line::before, .hud--cypher .hud__line::after { background: #7ec8ff; border-color: #7ec8ff; }
.hud--cypher .hud__tag { color: #cfe7ff; }

/* Главный заголовок */
.cover__title {
  grid-row: 3; align-self: end;
  max-width: 70%;
}
.cover__title h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 138px);
  line-height: .88;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0,0,0,.55);
}

/* Подзаголовки в чёрной плашке */
.cover__subs {
  margin-top: 18px;
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  background: rgba(8,8,9,.92);
  padding: 16px 22px;
  border-left: 6px solid var(--red);
  max-width: 720px;
}
.cover__sub-cyr {
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase; font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.05; letter-spacing: .02em;
}
.cover__sub-lat {
  font-family: var(--mono); font-size: 11px;
  color: #c9c2b3; letter-spacing: .15em; margin-top: 6px;
  text-transform: uppercase;
}
.cover__sep { width: 1px; background: rgba(255,255,255,.25); }

/* Содержание-плашка снизу */
.cover__toc {
  grid-row: 4;
  background: var(--ink);
  color: #ece5d6;
  padding: 14px 22px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 14px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;
  font-weight: 500;
  border-top: 4px solid var(--red);
}
.cover__toc-label {
  background: var(--paper); color: var(--ink);
  padding: 4px 10px; font-weight: 700;
  letter-spacing: .1em;
}
.cover__toc-dot { color: var(--red); font-weight: 700; }

.scroll-hint {
  position: absolute; left: 28px; bottom: 16px; z-index: 11;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .25em;
  color: #fff; opacity: .8;
}
.scroll-hint i {
  width: 1px; height: 28px; background: #fff; position: relative; display: inline-block;
  animation: tick 1.6s ease-in-out infinite;
}
.scroll-hint i::after {
  content:""; position: absolute; left: -3px; bottom: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 6px solid #fff;
}
@keyframes tick { 50% { transform: translateY(6px); opacity: .4; } }

/* ===================== СТАТИСТИКА ===================== */
.stats {
  background: var(--ink);
  color: #ece5d6;
  border-top: 6px solid var(--red);
}
.stats__row {
  display: grid;
  grid-template-columns: repeat(5, max-content) 1fr;
  align-items: center;
  gap: 36px;
  padding: 18px 28px;
}
.stat { display: flex; align-items: baseline; gap: 8px; }
.stat b {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; letter-spacing: -.01em;
  color: #fff;
}
.stat span {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .14em; color: #b6ad97;
}
.stat--ticker {
  margin-left: auto;
  overflow: hidden; max-width: 520px; gap: 12px;
  border-left: 1px solid #2a2a2a; padding-left: 18px;
}
.stat__lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: .25em;
  background: var(--red); color: #fff; padding: 3px 8px;
}
.stat__t {
  font-family: var(--mono); font-size: 12px; color: #ece5d6;
  white-space: nowrap; overflow: hidden;
  display: inline-block; animation: ticker 22s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ===================== СЕКЦИИ ===================== */
.sec-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 22px;
  padding: 56px 0 28px;
  border-bottom: 2px solid var(--ink);
}
.sec-head__num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(60px, 8vw, 110px);
  line-height: .8;
  color: var(--red);
}
.sec-head__title {
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1; letter-spacing: -.005em;
  margin: 0;
}
.sec-head__meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  align-self: center;
}
.sec-head--inv .sec-head__num { color: #fff; }
.sec-head--inv .sec-head__title { color: #fff; }
.sec-head--inv { border-bottom-color: #fff; }

/* ===================== В ЭТОМ НОМЕРЕ — карточки ===================== */
.issue { padding: 8px 0 80px; background: var(--paper); }

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.card {
  grid-column: span 2;
  background: var(--paper-2);
  border: 1px solid #d6cdb6;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,.18); }
.card--feature { grid-column: span 6; flex-direction: row; }
.card--feature .card__media { flex: 1.1; min-height: 360px; }
.card--feature .card__body { flex: 1; padding: 36px 36px 30px; }
.card--feature .card__title { font-size: clamp(36px, 3.6vw, 56px) !important; }

.card__media {
  position: relative;
  min-height: 220px;
  background: #1a1a1c;
  overflow: hidden;
}
.card__cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--display); font-weight: 700;
  font-size: 12px; letter-spacing: .14em; padding: 5px 10px;
  text-transform: uppercase;
}
.card__pages {
  position: absolute; bottom: 10px; right: 12px; z-index: 2;
  font-family: var(--mono); font-size: 11px; color: #fff;
  background: rgba(0,0,0,.7); padding: 3px 8px; letter-spacing: .12em;
}
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.card__kicker {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--red); font-weight: 700;
}
.card__title {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.05; letter-spacing: -.005em;
  text-transform: uppercase;
}
.card__lead {
  margin: 4px 0 0; font-family: var(--serif);
  color: #2b2b2b; font-size: 15px; line-height: 1.55;
}
.card__author {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.15);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}

/* Медиа-сцены в карточках (CSS art) */
.card__media--alley {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.7) 100%),
    repeating-linear-gradient(90deg, #1a1a1c 0 8px, #141416 8px 16px),
    radial-gradient(ellipse at 50% 60%, #3b3b3f 0%, #0a0a0c 70%);
}
.card__media--alley::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 30% 35%, rgba(255,180,80,.85), transparent 60%),
    radial-gradient(2px 2px at 65% 30%, rgba(255,80,80,.85), transparent 60%),
    radial-gradient(1px 1px at 50% 70%, rgba(120,200,255,.7), transparent 60%);
}
.card__media--lab {
  background:
    linear-gradient(135deg, #0a0a0a 0%, #1c1c20 100%);
}
.card__media--lab::after {
  content:""; position: absolute; inset: 18px;
  border: 1px dashed rgba(61,242,122,.7);
  background:
    radial-gradient(circle at 50% 50%, rgba(61,242,122,.08), transparent 60%),
    repeating-linear-gradient(45deg, rgba(61,242,122,.06) 0 4px, transparent 4px 10px);
}
.card__media--lab::before {
  content: "DRONE-Δ04"; position: absolute; bottom: 14px; left: 14px;
  color: var(--hud); font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  z-index: 3;
}
.card__media--ai {
  background:
    radial-gradient(ellipse at 50% 60%, #2a2a32 0%, #050507 70%);
}
.card__media--ai::before {
  content:""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 5px),
    radial-gradient(circle at 50% 50%, rgba(255,80,80,.18), transparent 55%);
  mix-blend-mode: screen;
}
.card__media--ai::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 140px; height: 140px; border-radius: 50%;
  transform: translate(-50%,-50%);
  background: conic-gradient(from 0deg, #ff3b30, #b8181d, #2a2a32, #ff3b30);
  filter: blur(1px) saturate(1.2);
  mask-image: radial-gradient(circle at 50% 50%, transparent 38px, #000 40px, #000 60px, transparent 62px);
}
.card__media--hack {
  background:
    linear-gradient(180deg, #050505 0%, #1a1a1c 100%);
}
.card__media--hack::before {
  content: "> 02:14:07  egress 142.198.55.18 :: payload OK\A> 02:14:09  beacon up :: lateral=4 hosts\A> 02:14:13  /etc/shadow exfil :: 1.2 MB\A> 02:14:18  cleanup :: rm -rf /var/log/auth.log";
  white-space: pre;
  position: absolute; inset: 18px;
  font-family: var(--mono); font-size: 11px; line-height: 1.7;
  color: var(--hud); opacity: .85;
}
.card__media--info {
  background: #f4efe7;
  border-bottom: 1px solid #d6cdb6;
}
.card__media--info::before {
  content:""; position: absolute; inset: 24px;
  background:
    linear-gradient(0deg, var(--red) 0 60%, transparent 60% 100%) 0%   100% / 14% 70% no-repeat,
    linear-gradient(0deg, var(--red) 0 80%, transparent 80% 100%) 18%  100% / 14% 50% no-repeat,
    linear-gradient(0deg, var(--ink) 0 35%, transparent 35% 100%) 36%  100% / 14% 90% no-repeat,
    linear-gradient(0deg, var(--red) 0 50%, transparent 50% 100%) 54%  100% / 14% 65% no-repeat,
    linear-gradient(0deg, var(--ink) 0 65%, transparent 65% 100%) 72%  100% / 14% 80% no-repeat,
    linear-gradient(0deg, var(--red) 0 25%, transparent 25% 100%) 90%  100% / 14% 45% no-repeat;
  border-bottom: 2px solid var(--ink);
}
.card__media--info .card__cat,
.card__media--info .card__pages {
  /* Делаем плашки тёмными на светлом */
}
.card__media--info .card__pages { background: var(--ink); color: #fff; }
.card__media--arch {
  background:
    repeating-linear-gradient(0deg, #18181a 0 12px, #0e0e10 12px 24px),
    linear-gradient(180deg, #2a2a2c, #08080a);
  position: relative;
}
.card__media--arch::before {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #0a0a0a 0 18%, transparent 18% 22%, #0a0a0a 22% 32%, transparent 32% 36%, #0a0a0a 36% 60%, transparent 60% 64%, #0a0a0a 64% 100%);
  opacity: .85;
}
.card__media--arch::after {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 24% 30%, #f3a712 50%, transparent 60%),
    radial-gradient(2px 2px at 24% 50%, #f3a712 50%, transparent 60%),
    radial-gradient(2px 2px at 24% 70%, #f3a712 50%, transparent 60%),
    radial-gradient(2px 2px at 50% 40%, #ff3b30 50%, transparent 60%),
    radial-gradient(2px 2px at 50% 65%, #7ec8ff 50%, transparent 60%),
    radial-gradient(2px 2px at 76% 30%, #f3a712 50%, transparent 60%),
    radial-gradient(2px 2px at 76% 60%, #ff3b30 50%, transparent 60%);
}

/* ===================== РАЗВОРОТ ===================== */
.spread {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 0 80px;
}
.spread__sheet {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ece5d6;
  color: var(--ink);
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.2);
  position: relative;
}
.spread__sheet::before {
  /* Сгиб */
  content:""; position: absolute; top: 0; bottom: 0; left: 50%;
  width: 30px; transform: translateX(-50%);
  background: linear-gradient(90deg,
    rgba(0,0,0,.0) 0%,
    rgba(0,0,0,.25) 45%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.0) 100%);
  pointer-events: none; z-index: 5;
}

/* Левая полоса: сцена + калька */
.spread__left { padding: 36px 36px 36px 48px; position: relative; }
.spread__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
  overflow: hidden;
  filter: grayscale(.15) contrast(1.05);
}

/* Сцена переулка */
.alley { position: absolute; inset: 0; }
.alley__sky {
  position: absolute; inset: 0 0 55% 0;
  background: linear-gradient(180deg, #0e0e12 0%, #1a1a1f 60%, #2a2a30 100%);
}
.alley__ground {
  position: absolute; inset: 45% 0 0 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(0,0,0,.85) 100%),
    repeating-linear-gradient(90deg, #1c1c20 0 16px, #161618 16px 32px);
}
.alley__wall {
  position: absolute; top: 12%; bottom: 0; width: 38%;
  background:
    repeating-linear-gradient(180deg, #18181a 0 24px, #0c0c0e 24px 48px);
  filter: brightness(.8);
}
.alley__wall--l { left: 0; transform: skewY(8deg); transform-origin: left center; }
.alley__wall--r { right: 0; transform: skewY(-8deg); transform-origin: right center; }
.alley__sign--neon {
  position: absolute; top: 18%; right: 8%;
  font-family: var(--display); font-weight: 700;
  font-size: 36px; letter-spacing: .04em;
  color: #ff3b30; padding: 6px 14px;
  border: 2px solid #ff3b30;
  background: rgba(0,0,0,.5);
  text-shadow: 0 0 18px rgba(255,59,48,.85), 0 0 4px rgba(255,255,255,.4);
  box-shadow: 0 0 18px rgba(255,59,48,.55), inset 0 0 12px rgba(255,59,48,.35);
  transform: rotate(-2deg);
}
.alley__sign--side {
  position: absolute; top: 32%; left: 7%;
  font-family: var(--mono); font-size: 14px; letter-spacing: .18em;
  color: #f3a712; background: rgba(0,0,0,.55); padding: 3px 8px;
  border: 1px solid #f3a712;
  text-shadow: 0 0 10px rgba(243,167,18,.6);
}
.alley__lamp {
  position: absolute; top: 8%; left: 25%; width: 8px; height: 90px;
  background: linear-gradient(180deg, #555 0%, #222 100%);
}
.alley__lamp::after {
  content:""; position: absolute; top: 88px; left: -42px; width: 92px; height: 14px;
  background: radial-gradient(ellipse at 50% 50%, #fff 0%, rgba(255,255,255,.0) 70%);
  filter: blur(2px);
}
.alley__rain {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(105deg, rgba(255,255,255,.06) 0 1px, transparent 1px 5px);
  opacity: .7; mix-blend-mode: screen;
  animation: rain 1.4s linear infinite;
}
@keyframes rain { 0% { background-position: 0 0; } 100% { background-position: -40px 80px; } }
.alley__man {
  position: absolute; bottom: 6%; left: 38%; width: 22%;
  filter: drop-shadow(0 14px 12px rgba(0,0,0,.7));
}

/* Калька */
.overlay {
  position: absolute; inset: 0;
  background: rgba(244, 239, 231, .82);
  mix-blend-mode: lighten;
  filter: contrast(1.1);
}
.overlay::before {
  /* эффект скотча сверху */
  content:""; position: absolute; top: -8px; left: 30px; width: 110px; height: 18px;
  background: rgba(255, 255, 200, .55);
  border-left: 1px solid rgba(0,0,0,.15); border-right: 1px solid rgba(0,0,0,.15);
  transform: rotate(-2deg);
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
}
.overlay__corner {
  position: absolute; right: 0; top: 0;
  width: 0; height: 0;
  border-style: solid; border-width: 0 60px 60px 0;
  border-color: transparent var(--paper-3) transparent transparent;
  filter: drop-shadow(-2px 2px 1px rgba(0,0,0,.15));
}
.overlay__tag {
  position: absolute;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--red);
  background: rgba(255,255,255,.85); padding: 3px 6px;
  border: 1px solid var(--red);
  z-index: 3;
}
.overlay__tag--top { top: 5%; left: 8%; }
.overlay__tag--mid { top: 38%; left: 6%; }
.overlay__tag--bot { bottom: 9%; left: 6%; }
.overlay svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.spread__pgnum {
  position: absolute; bottom: 12px; left: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  color: var(--muted);
}
.spread__credit {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink);
  background: var(--red); color: #fff; padding: 3px 10px;
}

/* Правая полоса */
.spread__right {
  padding: 36px 48px 36px 36px; position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #f1ebdc, #e8e1d0);
}
.spread__lead {
  font-family: var(--serif); font-size: 17px; line-height: 1.5;
  margin-bottom: 18px; color: var(--ink);
}
.dropcap {
  float: left;
  font-family: var(--display); font-weight: 700;
  font-size: 64px; line-height: .9;
  margin: 6px 8px -4px 0;
  color: var(--red);
}
.spread__brand { display: flex; justify-content: flex-end; }
.spread__brandbox {
  background: var(--red); color: #fff;
  padding: 10px 14px;
  font-family: var(--display); text-transform: uppercase;
  text-align: right; line-height: 1.05;
  margin-bottom: 14px;
}
.spread__brand-cyr { font-weight: 700; font-size: 22px; letter-spacing: .04em; }
.spread__brand-lat { font-weight: 500; font-size: 13px; letter-spacing: .12em; opacity: .95; }

.spread__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: .92; letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 6px 0 4px;
}
.spread__deck {
  font-family: var(--display); font-weight: 600; font-size: 18px;
  letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px; margin-bottom: 20px;
}

.spread__cols {
  column-count: 2; column-gap: 28px;
  font-family: var(--serif); font-size: 14.2px; line-height: 1.6;
  color: #1a1a1a;
  text-align: justify; hyphens: auto;
}
.spread__cols p { margin: 0 0 12px; }
.spread__bullet {
  display: inline-block; width: 8px; height: 8px;
  background: var(--red); margin-right: 8px;
  position: relative; top: -1px;
}

.spread__quote {
  margin: 22px 0 0;
  border-top: 4px double var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0 14px;
  font-family: var(--serif); font-style: italic;
  font-size: 19px; line-height: 1.4; color: var(--ink);
}
.spread__quote cite {
  display: block; margin-top: 8px;
  font-style: normal; font-family: var(--display);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red);
}
.spread__footer {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  color: var(--muted);
}
.spread__pg2 { color: var(--ink); font-weight: 700; }

/* ===================== РУБРИКИ ===================== */
.sections { background: var(--paper); padding: 8px 0 80px; }
.rubrics {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.rubrics li {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  background: var(--paper-2);
  transition: background .15s, color .15s;
}
.rubrics li:hover { background: var(--ink); color: var(--paper); }
.rubrics li:hover b { color: var(--red); }
.rubrics b {
  grid-row: 1 / 3;
  font-family: var(--display); font-weight: 700;
  font-size: 36px; line-height: 1; color: var(--red);
  align-self: start;
}
.rubrics span {
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase; font-size: 18px;
  letter-spacing: .03em;
}
.rubrics i {
  font-style: normal; font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; opacity: .7;
}

/* ===================== АРХИВ ===================== */
.archive { background: var(--paper-2); padding: 8px 0 80px; }
.covers {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px;
}
.cov {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 2px solid var(--ink);
  display: flex; flex-direction: column;
  padding: 16px; color: #fff;
  font-family: var(--display);
  background: #18181a;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.cov:hover { transform: translateY(-4px); box-shadow: 0 18px 30px rgba(0,0,0,.25); }
.cov::after {
  content:""; position: absolute; left: 12px; top: 12px;
  width: 56px; height: 56px; background: var(--red);
}
.cov__num {
  position: relative; z-index: 2; align-self: flex-end;
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  background: rgba(0,0,0,.7); padding: 4px 8px;
}
.cov__name {
  margin-top: auto; position: relative; z-index: 2;
  font-weight: 700; font-size: 22px; line-height: 1.05;
  text-transform: uppercase;
}
.cov__badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: var(--paper); color: var(--ink);
  font-family: var(--display); font-size: 11px;
  letter-spacing: .14em; padding: 3px 8px; font-weight: 700;
}
.cov--current { outline: 4px solid var(--red); outline-offset: -4px; }

/* Атмосферные подложки разных номеров */
.cov--current { background:
  linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.85)),
  repeating-linear-gradient(90deg, #1d1d22 0 6px, #131316 6px 12px); }
.cov--a { background:
  linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.85)),
  radial-gradient(circle at 30% 20%, #2c4a5e, #0a0a0c 70%); }
.cov--b { background:
  linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.85)),
  radial-gradient(circle at 70% 80%, #4a1414, #0a0a0c 70%); }
.cov--c { background:
  linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.85)),
  conic-gradient(from 220deg at 50% 50%, #1a1a1c, #353539, #1a1a1c); }
.cov--d { background:
  linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.85)),
  repeating-linear-gradient(45deg, #18181a 0 14px, #2a2a2e 14px 28px); }
.cov--e { background:
  linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.85)),
  radial-gradient(ellipse at 50% 80%, #2a3a1a, #0a0a0c 70%); }

/* ===================== ПОДПИСКА ===================== */
.subscribe {
  background: var(--ink); color: var(--paper); padding: 80px 0;
  border-top: 6px solid var(--red);
}
.subscribe__row {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: start;
}
.subscribe__kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: .25em;
  color: var(--red); text-transform: uppercase; margin-bottom: 14px;
}
.subscribe__title {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 6vw, 88px); line-height: .92;
  letter-spacing: -.005em; text-transform: uppercase;
}
.subscribe__lead {
  margin-top: 22px; font-family: var(--serif);
  font-size: 17px; max-width: 520px; color: #d6cfbf;
}
.subscribe__bullets {
  list-style: none; padding: 0; margin-top: 22px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--display); font-size: 16px; letter-spacing: .04em;
  text-transform: uppercase;
}
.subscribe__bullets li {
  padding-left: 24px; position: relative;
}
.subscribe__bullets li::before {
  content:""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 2px; background: var(--red);
}

.subscribe__form {
  background: #1a1a1d; border: 1px solid #2a2a2e;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.subscribe__price {
  border-bottom: 1px solid #2a2a2e; padding-bottom: 16px; margin-bottom: 6px;
}
.subscribe__price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: .04em; padding: 10px 12px;
  background: #0e0e10; border-left: 4px solid var(--red);
  margin-bottom: 8px;
}
.subscribe__price-row b {
  font-size: 22px; color: #fff;
}
.subscribe__price-row--alt { border-left-color: #555; }
.subscribe__price-row--alt b { color: #ddd; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: #999;
}
.field input[type="text"], .field input[type="email"] {
  background: #0a0a0c; border: 1px solid #2a2a2e;
  padding: 12px 14px; color: var(--paper);
  font-family: var(--serif); font-size: 16px;
  outline: none; transition: border-color .15s;
}
.field input:focus { border-color: var(--red); }
.field--check {
  flex-direction: row; align-items: flex-start; gap: 10px;
  font-family: var(--serif); font-size: 13px; line-height: 1.4; color: #b6ad97;
}
.field--check input { margin-top: 3px; accent-color: var(--red); }
.btn {
  background: var(--red); color: #fff; border: 0;
  padding: 16px 18px; font-family: var(--display);
  font-weight: 700; letter-spacing: .14em; font-size: 16px;
  text-transform: uppercase;
  transition: background .15s, transform .1s;
}
.btn:hover { background: #d22126; }
.btn:active { transform: translateY(1px); }
.subscribe__ok {
  font-family: var(--mono); font-size: 12px; color: var(--hud);
  letter-spacing: .14em; text-transform: uppercase;
}

/* ===================== ПОДВАЛ ===================== */
.foot {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  padding: 56px 0 0;
}
.foot__row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px;
}
.logobox--small { width: 240px; padding: 12px 14px 10px; }
.logobox--small .logobox__title { font-size: 26px; }
.logobox--small .logobox__lat { font-size: 13px; }
.foot__about { font-family: var(--serif); font-size: 14px; color: #2b2b2b; max-width: 360px; }
.foot__col h4 {
  margin: 0 0 12px; font-family: var(--display);
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px;
  border-bottom: 2px solid var(--ink); padding-bottom: 6px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.foot__col li, .foot__col a { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; }
.foot__col a:hover { color: var(--red); }
.foot__bottom { background: var(--ink); color: #b6ad97; }
.foot__bottom-row {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  padding: 14px 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
}

/* ===================== АДАПТИВ ===================== */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
  .card { grid-column: span 2; }
  .card--feature { grid-column: span 4; flex-direction: column; }
  .card--feature .card__media { min-height: 280px; }

  .rubrics { grid-template-columns: repeat(3, 1fr); }
  .covers { grid-template-columns: repeat(3, 1fr); }
  .stats__row { grid-template-columns: repeat(3, 1fr) 1fr; row-gap: 16px; }
  .stat--ticker { grid-column: 1 / -1; max-width: none; border-left: 0; padding-left: 0; }
  .subscribe__row { grid-template-columns: 1fr; }
  .foot__row { grid-template-columns: 1fr 1fr; }
  .cover__figure { height: 60vh; opacity: .65; }
  .cover__title { max-width: 100%; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .topstrip__row { gap: 14px; font-size: 10px; }
  .topstrip__live, .topstrip__item--push { display: none; }

  .cover__layer { padding: 22px 18px 60px; gap: 28px; }
  .logobox { width: 78%; padding: 14px 16px; }
  .issuedate__big { font-size: 18px; }
  .cover__title h1 { font-size: 56px; }
  .cover__subs { grid-template-columns: 1fr; gap: 10px; }
  .cover__sep { display: none; }

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

  .cards { grid-template-columns: 1fr; }
  .card, .card--feature { grid-column: span 1; }
  .card--feature { flex-direction: column; }

  .rubrics { grid-template-columns: 1fr 1fr; }
  .covers { grid-template-columns: 1fr 1fr; }

  .spread__sheet { grid-template-columns: 1fr; }
  .spread__sheet::before { display: none; }
  .spread__left { padding: 24px; }
  .spread__right { padding: 28px 24px; }
  .spread__cols { column-count: 1; }

  .foot__row { grid-template-columns: 1fr; }
  .foot__bottom-row { gap: 10px; padding: 14px 18px; }

  .sec-head { grid-template-columns: auto 1fr; row-gap: 4px; padding: 40px 0 20px; }
  .sec-head__meta { grid-column: 1 / -1; }
}

/* ===================== УВАЖЕНИЕ К НАСТРОЙКАМ ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* Печать — оставим обложку чистой */
@media print {
  body { background: #fff; color: #000; }
  .topstrip, .masthead, .scroll-hint, .stats, .subscribe, .foot { display: none; }
  .cover { min-height: auto; page-break-after: always; }
}
