/* =========================================================
   Блог Анны — общие стили.
   Подключается во все страницы /blog/*.html.
   Палитра, шрифты и базовые блоки наследуют светлую тему
   корневого styles-bright.css, но файл самодостаточен.
   ========================================================= */

:root {
  --bg: #f4f1e9;
  --paper: #ffffff;
  --paper-2: #ece8dd;
  --ink: #16140f;
  --soft: rgba(22, 20, 15, 0.66);
  --soft-2: rgba(22, 20, 15, 0.45);
  --hair: rgba(22, 20, 15, 0.16);
  --line: rgba(22, 20, 15, 0.18);
  --acid: #c7f23a;
  --magenta: #ff2d7e;
  --coral: #ff7a3d;
  --green: #1f9e44;
  --grad: linear-gradient(100deg, var(--magenta) 12%, var(--coral) 95%);
  --maxw: 1280px;
  --disp: "Unbounded", system-ui, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--acid); color: var(--ink); }
.wrap { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

/* ───────── Marquee ───────── */
.marquee { background: var(--acid); color: #0a0a0a; font-family: var(--disp); font-weight: 700; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; overflow: hidden; padding: 9px 0; border-bottom: 2px solid #0a0a0a; }
.marquee span { display: inline-block; padding-left: 100%; animation: slide 28s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ───────── Header ───────── */
.top { position: sticky; top: 0; z-index: 55; background: var(--bg); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 56px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .ava { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 0 0 1px var(--hair); }
.brand .name { font-family: var(--disp); font-weight: 900; font-size: 20px; letter-spacing: 0.01em; line-height: 1; }
.brand small { display: block; font-family: var(--sans); color: var(--soft-2); font-size: 10.5px; font-weight: 600; margin-top: 3px; }
.brand small b { color: var(--ink); font-weight: 800; }
.top .btn { padding: 9px 17px; font-size: 12.5px; background: transparent; color: var(--ink); border: 1.5px solid rgba(22, 20, 15, 0.22); border-radius: 100px; transition: background 0.18s, color 0.18s, border-color 0.18s; font-family: var(--disp); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.top .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.tg-badge { width: 19px; height: 19px; border-radius: 50%; background: var(--magenta); display: grid; place-items: center; flex: none; }
.tg-badge svg { width: 11px; height: 11px; }

/* Reading-progress bar (только статья) */
.progress { position: sticky; top: 56px; height: 3px; background: transparent; z-index: 54; }
.progress .bar { height: 100%; width: 0%; background: var(--grad); transition: width 0.1s; }

/* ───────── Hero (статья + индекс) ───────── */
.hero { padding: clamp(36px, 6vw, 70px) 0 clamp(24px, 4vw, 48px); }
.hero .wrap { max-width: 920px; }
.crumbs { font-family: var(--disp); font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--soft); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.crumbs a { transition: color 0.15s; }
.crumbs a:hover { color: var(--magenta); }
.crumbs .sep { color: var(--soft-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--disp); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--magenta); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--magenta); }
.hero h1 { font-family: var(--disp); font-weight: 900; letter-spacing: -0.02em; line-height: 0.96; text-transform: none; font-size: clamp(38px, 6.4vw, 76px); margin-bottom: 26px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-family: var(--serif); font-size: clamp(19px, 2.1vw, 24px); line-height: 1.45; color: var(--soft); font-weight: 500; max-width: 38ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); align-items: center; font-size: 13px; color: var(--soft); }
.hero-meta .author { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.hero-meta .author .ava-sm { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--soft-2); }
.hero-meta time { font-variant-numeric: tabular-nums; }

/* На индексе hero шире и с уплощённым H1 */
.hero.index .wrap { max-width: var(--maxw); }
.hero.index h1 { text-transform: uppercase; font-size: clamp(44px, 8vw, 96px); max-width: 14ch; }
.hero.index .lead { font-family: var(--sans); font-size: clamp(17px, 1.7vw, 20px); max-width: 56ch; font-weight: 500; }
.hero.index .stats { display: flex; flex-wrap: wrap; gap: 18px 32px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero.index .stat .k { font-family: var(--disp); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft-2); display: block; margin-bottom: 4px; }
.hero.index .stat .v { font-family: var(--disp); font-size: 22px; font-weight: 800; line-height: 1; }
.hero.index .stat .v .mag { color: var(--magenta); }

/* ───────── Section helper ───────── */
.section { padding: clamp(48px, 6vw, 80px) 0; }
.article { padding: clamp(20px, 3vw, 40px) 0 clamp(48px, 6vw, 80px); }

/* ───────── Index — кластеры и карточки ───────── */
.cluster-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 60px); align-items: end; margin-bottom: clamp(28px, 4vw, 44px); padding-bottom: 24px; border-bottom: 2px solid var(--ink); }
.cluster-head .num { font-family: var(--disp); font-size: clamp(60px, 10vw, 140px); font-weight: 900; line-height: 0.85; letter-spacing: -0.04em; -webkit-text-stroke: 2px var(--ink); color: transparent; }
.cluster-head .meta { color: var(--soft); font-size: 14px; line-height: 1.5; max-width: 40ch; }
.cluster-head h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 4vw, 48px); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.card { display: flex; flex-direction: column; padding: 26px 26px 24px; background: var(--paper); border: 2px solid var(--ink); transition: transform 0.18s, box-shadow 0.18s, background 0.2s, color 0.2s; min-height: 260px; position: relative; box-shadow: 4px 4px 0 var(--ink); }
.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--magenta); }
.card:hover .arrow { transform: translate(4px, -4px); color: var(--magenta); }
.card:hover .card-title { color: var(--magenta); }
.card-tag { align-self: flex-start; font-family: var(--disp); font-size: 10.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; background: var(--ink); color: var(--paper); border-radius: 100px; transition: background 0.2s, color 0.2s; }
.card-title { font-family: var(--disp); font-weight: 800; font-size: 19.5px; line-height: 1.2; letter-spacing: -0.01em; margin: 16px 0 10px; transition: color 0.2s; }
.card-desc { font-size: 14px; line-height: 1.5; color: var(--soft); margin: 0 0 16px; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 12px; color: var(--soft-2); margin-top: auto; align-items: center; font-weight: 600; padding-top: 14px; border-top: 1px solid var(--line); }
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.card .arrow { position: absolute; top: 22px; right: 22px; width: 22px; height: 22px; transition: transform 0.2s, color 0.2s; opacity: 0.7; }
.card.pillar { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.card.pillar .card-title { color: var(--paper); }
.card.pillar .card-tag { background: var(--acid); color: var(--ink); }
.card.pillar .card-desc, .card.pillar .card-meta { color: rgba(255, 255, 255, 0.7); }
.card.pillar .card-meta { border-top-color: rgba(255, 255, 255, 0.18); }
.card.pillar:hover { box-shadow: 8px 8px 0 var(--acid); }
.card.pillar:hover .card-title { color: var(--acid); }
.card.pillar:hover .arrow { color: var(--acid); }

.note { margin: 32px 0; padding: 18px 22px; background: var(--paper-2); border-left: 4px solid var(--magenta); font-size: 14px; color: var(--soft); line-height: 1.55; }
.note b { color: var(--ink); }
.note code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px; background: rgba(22, 20, 15, 0.08); padding: 1px 6px; border-radius: 3px; }

/* ───────── Статья — типографика ───────── */
.article .wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(36px, 5vw, 64px); max-width: 1180px; }
@media (min-width: 1024px) { .article .wrap { grid-template-columns: minmax(0, 1fr) 240px; } }

.prose { max-width: 68ch; font-size: 18.5px; line-height: 1.72; color: var(--ink); }
.prose > * + * { margin-top: 1.2em; }
.prose .first-p::first-letter { font-family: var(--disp); font-weight: 900; float: left; font-size: 76px; line-height: 0.85; padding: 8px 12px 0 0; color: var(--magenta); }
.prose h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.05; letter-spacing: -0.02em; margin: 1.8em 0 0.5em; padding-top: 0.5em; position: relative; }
.prose h2::before { content: ""; position: absolute; left: -22px; top: 1em; width: 4px; height: 0.9em; background: var(--magenta); }
@media (max-width: 720px) { .prose h2::before { left: 0; top: 0; width: 36px; height: 4px; } .prose h2 { padding-top: 22px; } }
.prose h3 { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.3vw, 24px); line-height: 1.2; letter-spacing: -0.01em; margin: 1.6em 0 0.4em; color: var(--ink); }
.prose h3::before { content: "→ "; color: var(--magenta); font-weight: 900; }
.prose strong, .prose b { font-weight: 700; color: var(--ink); }
.prose em { font-style: italic; }
.prose a:not(.btn-cta):not(.btn-big) { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(31, 158, 68, 0.35); text-underline-offset: 3px; transition: text-decoration-color 0.15s; }
.prose a:not(.btn-cta):not(.btn-big):hover { text-decoration-color: var(--green); }
.prose ul, .prose ol { padding-left: 0; list-style: none; }
.prose ul li, .prose ol li { padding-left: 28px; position: relative; margin-top: 12px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 0.7em; width: 10px; height: 2px; background: var(--magenta); }
.prose ol { counter-reset: li; }
.prose ol li { counter-increment: li; }
.prose ol li::before { content: counter(li); position: absolute; left: 0; top: -2px; font-family: var(--disp); font-weight: 800; font-size: 14px; color: var(--magenta); }
.prose sup.cite { font-family: var(--disp); font-size: 10px; font-weight: 700; color: var(--magenta); padding: 0 3px; vertical-align: super; line-height: 0; }
.prose sup.cite a { color: inherit; text-decoration: none; }

/* ───────── Блоки внутри статьи ───────── */
.callout { margin: 32px 0; padding: 24px 26px; background: var(--paper); border: 2px solid var(--ink); border-left: 6px solid var(--magenta); position: relative; }
.callout .label { font-family: var(--disp); font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; display: block; }
.callout p { font-size: 16.5px; line-height: 1.6; }
.callout p + p { margin-top: 10px; }
.callout.acid { border-left-color: var(--acid); background: linear-gradient(to right, rgba(199, 242, 58, 0.12), transparent 80%); }
.callout.acid .label { color: #4a6d00; }

/* ───────── Data-figure (инфографика-визуалы) ───────── */
.prose figure.fig { margin: 38px 0; }
.fig .fig-frame { background: var(--paper-2); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); padding: clamp(12px, 2.4vw, 20px); }
.fig .fig-frame svg { display: block; width: 100%; height: auto; }
.fig figcaption { margin-top: 15px; font-family: var(--sans); font-size: 14.5px; line-height: 1.55; color: var(--soft); }
.fig figcaption .fig-src { display: block; margin-top: 7px; font-family: var(--disp); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--soft-2); }

.pull { margin: 48px 0; padding: 36px 32px 30px 88px; background: var(--ink); color: #fff; position: relative; }
.pull::before { content: "“"; position: absolute; top: 6px; left: 20px; font-family: var(--disp); font-size: 96px; line-height: 1; color: var(--magenta); font-weight: 900; pointer-events: none; }
@media (max-width: 560px) { .pull { padding: 70px 24px 26px; } .pull::before { top: -6px; left: 22px; font-size: 84px; } }
.pull p { font-family: var(--disp); font-weight: 700; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.25; letter-spacing: -0.01em; }
.pull .by { display: block; margin-top: 16px; font-family: var(--sans); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.6); }
.pull .by b { color: var(--acid); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); margin: 32px 0; }
.stat-row .item { padding: 22px 20px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--paper); }
.stat-row .item .v { font-family: var(--disp); font-weight: 900; font-size: clamp(30px, 4vw, 44px); color: var(--magenta); line-height: 1; letter-spacing: -0.02em; }
.stat-row .item .k { font-size: 13px; color: var(--soft); margin-top: 8px; line-height: 1.4; }

.mid-cta { margin: 48px 0; padding: 32px 30px; background: var(--paper-2); border: 2px solid var(--ink); position: relative; overflow: hidden; }
.mid-cta::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; background: var(--acid); border-radius: 50%; opacity: 0.55; }
.mid-cta .label { font-family: var(--disp); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 10px; position: relative; z-index: 1; }
.mid-cta h4 { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 12px; position: relative; z-index: 1; max-width: 22ch; }
.mid-cta p { color: var(--soft); font-size: 15.5px; line-height: 1.55; margin-bottom: 20px; max-width: 50ch; position: relative; z-index: 1; }
.mid-cta .btn-cta { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.02em; padding: 14px 22px; background: var(--ink); color: #fff; transition: transform 0.15s, box-shadow 0.15s; position: relative; z-index: 1; }
.mid-cta .btn-cta:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--magenta); }
.mid-cta .btn-cta svg { width: 16px; height: 16px; }

/* ───────── Anna chat ───────── */
.chat-block { margin: 48px 0; }
.chat-block .label { font-family: var(--disp); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; display: block; }
.chat-block h4 { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.15; margin-bottom: 22px; max-width: 24ch; }
.phone { width: min(100%, 380px); border: 1px solid var(--hair); border-radius: 16px; background: var(--paper); padding: 9px; box-shadow: 0 24px 60px -28px rgba(22, 20, 15, 0.3); }
.phone-inner { background: #fff; border: 1px solid var(--hair); overflow: hidden; border-radius: 8px; }
.phone-bar { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-bottom: 1px solid var(--hair); }
.phone-bar .ava { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #fff; font-family: var(--disp); font-weight: 800; font-size: 16px; flex: none; }
.phone-bar .who b { font-size: 14.5px; font-weight: 700; }
.phone-bar .who small { display: block; color: var(--green); font-size: 12px; font-weight: 600; }
.phone-bar .who small::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 5px; vertical-align: middle; }
.thread { display: flex; flex-direction: column; gap: 8px; padding: 18px 14px; background: linear-gradient(180deg, #fbfaf6, #fff); }
.msg { max-width: 86%; padding: 10px 13px; border-radius: 15px; font-size: 14.5px; line-height: 1.45; }
.msg.me { align-self: flex-end; background: #eaf3d4; color: #2a3a12; border-bottom-right-radius: 4px; }
.msg.anna { align-self: flex-start; background: #fff; border: 1px solid var(--hair); color: var(--ink); border-bottom-left-radius: 4px; }
.msg .time { display: block; margin-top: 4px; font-size: 10.5px; opacity: 0.45; font-weight: 600; }

/* ───────── FAQ ───────── */
.faq { margin: 56px 0 32px; padding-top: 40px; border-top: 2px solid var(--ink); }
.faq h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 24px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; font-family: var(--disp); font-weight: 700; font-size: clamp(17px, 1.8vw, 19px); line-height: 1.3; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--disp); font-weight: 800; font-size: 28px; line-height: 0.8; color: var(--magenta); transition: transform 0.2s; flex: none; }
.faq details[open] summary { color: var(--magenta); }
.faq details > div { padding-top: 14px; color: var(--soft); font-size: 16px; line-height: 1.6; }
.faq details > div p + p { margin-top: 10px; }

/* ───────── YMYL disclaimer ───────── */
.ymyl { margin: 48px 0; padding: 22px 24px; background: rgba(255, 45, 126, 0.08); border-left: 4px solid var(--magenta); font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.ymyl b { color: var(--magenta); }
.ymyl a { color: var(--magenta); font-weight: 700; }

/* ───────── Sources ───────── */
.sources { margin-top: 48px; padding-top: 32px; border-top: 2px solid var(--ink); }
.sources h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); line-height: 1; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 20px; }
.sources ol { padding-left: 0; list-style: none; counter-reset: src; }
.sources li { counter-increment: src; padding: 14px 0 14px 40px; position: relative; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.55; color: var(--soft); }
.sources li::before { content: counter(src); position: absolute; left: 0; top: 14px; font-family: var(--disp); font-weight: 800; font-size: 13px; color: var(--magenta); border: 1.5px solid var(--magenta); border-radius: 50%; width: 26px; height: 26px; display: grid; place-items: center; }
.sources b { color: var(--ink); }
.sources a { color: var(--green); word-break: break-word; text-decoration: underline; text-decoration-color: rgba(31, 158, 68, 0.35); text-underline-offset: 3px; }

/* ───────── TOC (desktop) ───────── */
.toc { position: sticky; top: 80px; align-self: start; font-size: 13px; padding: 18px 18px 22px; border-left: 2px solid var(--ink); display: none; }
@media (min-width: 1024px) { .toc { display: block; } }
.toc .label { font-family: var(--disp); font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta); margin-bottom: 14px; }
.toc ol { list-style: none; padding: 0; counter-reset: t; }
.toc li { counter-increment: t; margin-bottom: 12px; line-height: 1.4; }
.toc li::before { content: counter(t, decimal-leading-zero); display: block; font-family: var(--disp); font-size: 10px; font-weight: 700; color: var(--soft-2); margin-bottom: 2px; }
.toc a { color: var(--soft); transition: color 0.15s; font-weight: 500; }
.toc a:hover, .toc a.is-active { color: var(--magenta); }

/* ───────── Related ───────── */
.related { padding: clamp(40px, 5vw, 64px) 0; background: var(--paper-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.related h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(28px, 4vw, 48px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 28px; }
.related-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.rel-card { padding: 24px 22px 20px; background: var(--paper); border: 2px solid var(--ink); transition: transform 0.18s, box-shadow 0.18s; display: flex; flex-direction: column; min-height: 200px; }
.rel-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--magenta); }
.rel-card .tag { font-family: var(--disp); font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--magenta); margin-bottom: 12px; }
.rel-card .t { font-family: var(--disp); font-weight: 800; font-size: 17px; line-height: 1.2; letter-spacing: -0.01em; flex: 1; }
.rel-card .read { margin-top: 14px; font-size: 12px; color: var(--soft); font-weight: 600; }

/* ───────── Final CTA ───────── */
.final { padding: clamp(56px, 8vw, 100px) 0; text-align: center; position: relative; overflow: hidden; }
.final .wrap { max-width: 720px; position: relative; z-index: 2; }
.final .clock { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--magenta); margin-bottom: 22px; }
.final .clock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.final .disp { font-family: var(--disp); font-weight: 900; font-size: clamp(36px, 6vw, 64px); line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.final .disp .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final p.lead { color: var(--soft); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.55; margin: 26px auto 32px; max-width: 48ch; font-weight: 500; font-family: var(--sans); }
.final .btn-big { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em; padding: 19px 36px; background: var(--acid); color: #0a0a0a; transition: transform 0.15s, box-shadow 0.15s; }
.final .btn-big:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--magenta); }
.final .cta-hint { margin-top: 16px; color: var(--soft-2); font-size: 14px; }
.final .cta-hint b { color: var(--green); font-weight: 700; }

/* ───────── Footer ───────── */
.foot { background: var(--ink); color: #d8d4c8; padding: 56px 0 40px; }
.foot .wrap { display: grid; gap: 32px; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
.foot .brand .name { color: #fff; }
.foot .brand small { color: rgba(255, 255, 255, 0.5); }
.foot .brand small b { color: #fff; }
.foot .links { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 18px; font-size: 14px; }
.foot .links a { transition: color 0.15s; }
.foot .links a:hover { color: var(--acid); }
.foot .disclaimer { font-size: 12.5px; line-height: 1.6; color: rgba(216, 212, 200, 0.7); }
.foot .disclaimer p + p { margin-top: 10px; }
.foot .disclaimer b { color: #fff; }
.foot .disclaimer a { color: var(--acid); }

/* ───────── Responsive ───────── */
@media (max-width: 760px) {
  .cluster-head { grid-template-columns: 1fr; gap: 14px; }
  .cluster-head .num { font-size: clamp(54px, 16vw, 90px); }
  .foot .wrap { grid-template-columns: 1fr; }
  .top .btn { padding: 9px 13px; font-size: 11px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .prose { font-size: 17.5px; }
  .prose .first-p::first-letter { font-size: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee span { animation: none; }
  .final .clock::before { animation: none; }
}

/* ===== Подвал: два ряда ссылок (SITE:FOOTER, генерируется tools/build.py) ===== */
.foot .links-main { margin-top: 18px; }
.foot .links-main a { color: #fff; }
.foot .links-main + .links { margin-top: 10px; }
