/* ============================================================
   Hralnyk Visnyk — design system v2 (minimalist flat)
   White-first, single accent, generous space, no shadows.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f5f5f5;

  --ink: #0a0a0a;
  --ink-2: #525252;
  --ink-3: #a3a3a3;
  --ink-inverse: #fafafa;

  --line: #e5e5e5;
  --line-2: #d4d4d4;

  --accent: #dc2626;
  --accent-soft: #fef2f2;
  --positive: #16a34a;

  --font: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'JetBrains Mono', "SF Mono", Menlo, Consolas, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--font);
  font-feature-settings: "kern", "liga", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color .15s var(--ease);
}
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
p { margin: 0 0 1em; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ---------- Top utility bar ---------- */
.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-2);
  padding: 10px 0;
  background: var(--bg);
}
.topbar .wrap { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.topbar .meta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.reg-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); }
.reg-badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--positive);
  border-radius: 50%;
}

/* ---------- Language switcher ---------- */
.lang { display: inline-flex; align-items: center; gap: 0; }
.lang a, .lang span {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lang a:hover { color: var(--ink); }
.lang .active {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.logo:hover { color: var(--ink); }
.logo .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: 4px;
}

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.nav-list a {
  display: block;
  padding: 8px 14px;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-list a:hover { color: var(--ink); background: var(--bg-3); }
.nav-list .active a { color: var(--ink); background: var(--bg-3); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line-2);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- Warning banner ---------- */
.warn-banner {
  background: var(--ink);
  color: var(--ink-inverse);
  font-size: 13px;
  padding: 14px var(--gutter);
}
.warn-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  line-height: 1.4;
}
.warn-banner strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.warn-banner a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-underline-offset: 3px; }
.warn-banner a:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow.muted { color: var(--ink-3); }

.headline {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
.h-xl { font-size: clamp(38px, 5.5vw, 72px); }
.h-lg { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; }
.h-md { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.15; }
.h-sm { font-size: 18px; line-height: 1.25; font-weight: 600; }

.dek {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  font-weight: 400;
}

.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.meta strong { color: var(--ink); font-weight: 500; }

/* ---------- Image placeholders (key feature per user request) ---------- */
.img {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img::before {
  content: attr(data-label);
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.img::after {
  content: attr(data-size);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #c4c4c4;
  letter-spacing: 0.04em;
}
.img[data-ratio="21x9"] { aspect-ratio: 21 / 9; }
.img[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.img[data-ratio="4x3"] { aspect-ratio: 4 / 3; }
.img[data-ratio="3x4"] { aspect-ratio: 3 / 4; }
.img[data-ratio="1x1"] { aspect-ratio: 1 / 1; }
.img[data-ratio="3x2"] { aspect-ratio: 3 / 2; }

/* ---------- Hero / Lead ---------- */
.hero {
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero-main .eyebrow { margin-bottom: 18px; }
.hero-main .headline { margin: 0 0 20px; }
.hero-main .dek { margin: 0 0 24px; max-width: 60ch; }
.hero-main .img { margin-top: 32px; }
.hero-meta {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hero-meta strong { color: var(--ink); font-weight: 500; text-transform: none; letter-spacing: 0; font-family: var(--font); font-size: 14px; }

/* ---------- Top stories list ---------- */
.top-stories h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}
.top-stories ol { list-style: none; padding: 0; margin: 0; counter-reset: stories; }
.top-stories li {
  counter-increment: stories;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}
.top-stories li:last-child { border-bottom: 0; }
.top-stories li::before {
  content: counter(stories, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.top-stories li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.top-stories li a:hover { color: var(--accent); }
.top-stories .meta { display: block; margin-top: 6px; }

/* ---------- Section heading ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.section-head h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.section-head .more {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.section-head .more:hover { color: var(--accent); }
.section-head .more::after { content: " →"; }

/* ---------- News grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.card { display: flex; flex-direction: column; gap: 14px; }
.card .img { margin-bottom: 4px; }
.card h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--accent); }
.card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.card .meta { margin-top: auto; padding-top: 8px; }

/* ---------- Compact news list ---------- */
.compact { list-style: none; padding: 0; margin: 0; }
.compact li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.compact li .meta { padding-top: 3px; line-height: 1.5; }
.compact li h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.compact li h3 a { color: var(--ink); }
.compact li h3 a:hover { color: var(--accent); }
.compact li p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 0 32px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.stat-num .accent { color: var(--accent); }
.stat-label {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 14px;
  line-height: 1.5;
}

/* ---------- CTA / Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background .15s var(--ease);
}
.btn:hover { background: var(--accent); color: #fff; }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--bg-3); color: var(--ink); border-color: var(--ink); }
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--ink); }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
}
.tag:hover { border-color: var(--ink); color: var(--ink); }

/* ---------- Status pills ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--ink-2);
}
.pill--active { background: #ecfdf5; color: var(--positive); }
.pill--active::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }
.pill--revoked { background: var(--accent-soft); color: var(--accent); }
.pill--warn { background: #fffbeb; color: #92400e; }

/* ---------- Article ---------- */
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 24px 0 0;
}
.breadcrumbs a { color: var(--ink-3); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { margin: 0 8px; }

.article {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(240px, 1fr);
  gap: 80px;
  padding: 32px 0 96px;
}
.article-head { margin-bottom: 28px; }
.article-head .eyebrow { margin-bottom: 18px; }
.article-head h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.article-head .dek { margin: 0 0 24px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.article-meta .verified { color: var(--positive); display: inline-flex; align-items: center; gap: 6px; }
.article-meta .verified::before { content: "✓"; font-weight: 700; }
.article-featured { margin: 32px 0; }

.prose { font-size: 18px; line-height: 1.7; color: var(--ink); }
.prose p { margin: 0 0 1.3em; }
.prose h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2em 0 0.6em;
  line-height: 1.15;
}
.prose h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 1.6em 0 0.4em;
}
.prose blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.prose blockquote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.3em; }
.prose li { margin-bottom: 0.5em; }

.pullquote {
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.pullquote-cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.sources {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.sources h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
}
.sources ol {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  padding-left: 1.4em;
}
.sources li { margin-bottom: 6px; }

/* ---------- Article aside ---------- */
.article-aside { position: sticky; top: 96px; align-self: start; }
.aside-block {
  margin-bottom: 36px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.aside-block h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--ink);
}
.aside-block ul { list-style: none; padding: 0; margin: 0; }
.aside-block li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.aside-block li:last-child { border-bottom: 0; }
.aside-block li a:hover { color: var(--accent); }

.tldr ul { padding: 4px 0; }
.tldr li {
  border-bottom: 0;
  padding: 4px 0 4px 20px;
  position: relative;
  font-weight: 400;
}
.tldr li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1.5px;
  background: var(--accent);
}

/* ---------- Operator profile ---------- */
.operator-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.operator-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 12px 0 12px;
  line-height: 1;
}
.operator-head .pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.operator-sidefacts {
  font-size: 13px;
  min-width: 280px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.operator-sidefacts dt {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-top: 14px;
}
.operator-sidefacts dt:first-of-type { margin-top: 0; }
.operator-sidefacts dd { margin: 4px 0 0; color: var(--ink); font-weight: 500; line-height: 1.4; }

.operator-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  padding: 48px 0;
}
.operator-section { margin-bottom: 48px; }
.operator-section h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.operator-section h2 .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.table-data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table-data th, .table-data td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table-data th {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  background: var(--bg-2);
}

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.timeline li {
  position: relative;
  padding: 6px 0 24px 28px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 11px; height: 11px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.timeline li.critical::before { background: var(--accent); border-color: var(--accent); }
.timeline .tl-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.timeline .tl-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2px 0 4px;
  line-height: 1.3;
}
.timeline .tl-desc { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ---------- RG hero ---------- */
.rg-hero {
  background: var(--ink);
  color: var(--ink-inverse);
  padding: 96px var(--gutter);
  text-align: center;
}
.rg-hero-inner { max-width: 720px; margin: 0 auto; }
.rg-hero .eyebrow { color: var(--accent); }
.rg-hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 16px 0 20px;
  color: #fff;
}
.rg-hero p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 0 32px; }
.rg-helpline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  transition: background .15s var(--ease);
}
.rg-helpline:hover { background: #fff; color: var(--accent); }
.rg-helpline .num { font-family: var(--font-mono); font-size: 22px; letter-spacing: 0.02em; }

.rg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 56px 0;
}
.rg-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.rg-card .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.rg-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 12px 0 12px;
}
.rg-card p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---------- About / Author cards ---------- */
.authors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 32px 0;
}
.author {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
}
.author .img {
  width: 80px; height: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
}
.author .img::before { display: none; }
.author .img::after { font-size: 10px; }
.author h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.author .role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.author p { font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0; }

.principle {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
}
.principle:first-of-type { padding-top: 0; }
.principle .pnum {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}
.principle h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.principle p { margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.6; }

/* ---------- Newsletter ---------- */
.newsletter {
  border: 1px solid var(--line);
  padding: 56px;
  margin: 72px 0 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.newsletter p { color: var(--ink-2); margin: 0; font-size: 15px; line-height: 1.55; }
.newsletter form {
  display: flex;
  gap: 0;
  border: 1px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  border: 0;
  padding: 14px 22px;
  background: transparent;
  font: inherit;
  font-size: 14px;
}
.newsletter input:focus { outline: 0; }
.newsletter button {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
}
.newsletter button:hover { background: var(--accent); }

/* ---------- Ad slot ---------- */
.ad-slot {
  margin: 32px 0;
  padding: 24px;
  border: 1px dashed var(--line-2);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ad-slot strong { color: var(--ink); font-weight: 500; }

/* ---------- Stub page ---------- */
.stub {
  text-align: center;
  padding: 96px 0 64px;
  max-width: 640px;
  margin: 0 auto;
}
.stub .eyebrow { margin-bottom: 18px; }
.stub h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.stub p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.stub-roadmap {
  text-align: left;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.stub-roadmap h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 600;
}
.stub-roadmap ul { list-style: none; padding: 0; margin: 0; }
.stub-roadmap li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 14px;
  align-items: center;
  color: var(--ink-2);
}
.stub-roadmap li:last-child { border-bottom: 0; }
.stub-roadmap li .marker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.stub-roadmap li .pill { font-size: 10px; padding: 3px 8px; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  padding: 16px 20px;
  background: var(--bg-2);
  border-left: 3px solid var(--ink-3);
  margin: 24px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--ink-inverse);
  padding: 80px var(--gutter) 32px;
  margin-top: 96px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: #fff; font-size: 24px; }
.footer-brand .logo .dot { background: var(--accent); }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
.footer-col a:hover { color: #fff; }

.legal-strip {
  max-width: var(--maxw);
  margin: 32px auto 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.legal-strip a { color: rgba(255,255,255,0.75); }
.legal-strip a:hover { color: #fff; }
.badge-21 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat { border-left: 0; padding: 0; }
  .article { grid-template-columns: 1fr; gap: 56px; }
  .article-aside { position: static; }
  .operator-head { grid-template-columns: 1fr; gap: 24px; }
  .operator-body { grid-template-columns: 1fr; gap: 40px; }
  .authors { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter { padding: 40px; }
  .rg-cards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-list { display: none; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    gap: 0;
  }
  .nav-list.open a { padding: 12px var(--gutter); border-radius: 0; }
  .menu-toggle { display: inline-block; }
  .site-header { position: relative; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .compact li { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .authors { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 1fr; gap: 12px; }
  .legal-strip { grid-template-columns: 1fr; }
  .topbar .meta { gap: 12px; }
  .topbar { font-size: 11px; }
  .reg-badge { display: none; }
}


/* dropdown-menu-v1 */
.nav-list > li { position: relative; }
.nav-list > li.has-sub > a::after { content:""; display:inline-block; width:5px; height:5px; margin-left:6px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg) translateY(-2px); opacity:.45; }
.submenu { position:absolute; top:100%; left:0; margin-top:8px; background:#fff; border:1px solid var(--line); border-radius:14px; box-shadow:0 16px 44px rgba(10,10,10,.12); padding:8px; min-width:236px; z-index:80; opacity:0; visibility:hidden; transform:translateY(-6px); transition:opacity .15s var(--ease), transform .15s var(--ease), visibility .15s; }
.nav-list > li.has-sub:hover > .submenu, .nav-list > li.has-sub:focus-within > .submenu { opacity:1; visibility:visible; transform:none; }
.submenu a { display:block; padding:7px 12px; border-radius:9px; font-size:13.5px; font-weight:500; color:var(--ink-2); white-space:nowrap; }
.submenu a:hover { background:var(--bg-3); color:var(--ink); text-decoration:none; }
.submenu a.sub-all { color:var(--accent); font-weight:600; }
.submenu--cols { columns:2; column-gap:6px; min-width:436px; }
.submenu--cols a { break-inside:avoid; }
.submenu--right { left:auto; right:0; }
/* sitemap page */
.karta-block { margin-bottom:26px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.karta-block h2 { font-size:21px; margin:0 0 12px; }
.karta-links { list-style:none; padding:0; margin:0; columns:3; column-gap:28px; }
.karta-links li { padding:5px 0; break-inside:avoid; }
.karta-links a { color:var(--ink-2); }
.karta-links a:hover { color:var(--ink); }
@media (max-width:680px){
  .nav-list.open > li.has-sub > a::after { float:right; }
  .nav-list.open .submenu { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; border-radius:0; padding:0; margin:0; min-width:0; columns:1; display:none; background:var(--bg-2); }
  .nav-list.open > li.has-sub.open > .submenu { display:block; }
  .nav-list.open .submenu a { padding:11px 40px; }
  .karta-links { columns:1; }
}


/* footer-v2 */
.footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr) !important; }
.footer-col h4 { text-transform: none !important; letter-spacing: 0 !important; color: var(--ink-2) !important; font-weight: 600 !important; font-size: 14px !important; opacity: .9; }
@media (min-width: 1000px){ .footer-grid { grid-template-columns: 1.2fr repeat(6, 1fr) !important; } }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr !important; } }


/* footer-col-title */
.footer-col-title{ display:block; margin:0 0 14px; font-size:14px; font-weight:600; color:var(--ink-2); text-transform:none; letter-spacing:0; }
