@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-display: swap;
  font-weight: 400 900;
  src: url('/fonts/golos-text-cyrillic-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --bg: #f5f6f3;
  --paper: #ffffff;
  --ink: #0c0f0d;
  --ink-2: #5f6661;
  --ink-3: #9aa29c;
  --line: rgba(12, 15, 13, .08);
  --accent: #22c55e;
  --accent-2: #15803d;
  --accent-soft: rgba(34, 197, 94, .13);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, .12);
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, .14);
  --dark: #0b0e0c;
  --dark-2: #151a17;
  --wrap: 1040px;
  --r: 20px;
  --r-s: 14px;
  --shadow: 0 1px 2px rgba(12, 15, 13, .04), 0 12px 40px -12px rgba(12, 15, 13, .12);
  --shadow-hover: 0 2px 4px rgba(12, 15, 13, .05), 0 24px 48px -16px rgba(12, 15, 13, .2);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
a { color: inherit; }
button { font: inherit; cursor: pointer; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- тёмный герой во всю ширину ---------- */

.hero-bg {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
}
.hero-bg::before, .hero-bg::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-bg::before { width: 560px; height: 560px; left: -160px; top: -220px; background: rgba(34, 197, 94, .35); }
.hero-bg::after { width: 460px; height: 460px; right: -120px; bottom: -220px; background: rgba(45, 212, 191, .22); }
.hero-bg > .wrap { position: relative; z-index: 1; }

.top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0 0; font-size: 14px; color: rgba(255, 255, 255, .6);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(34, 197, 94, .2), 0 0 24px rgba(34, 197, 94, .8); }
.brand b { font-weight: 700; letter-spacing: -0.01em; font-size: 15px; }
.light .top { color: var(--ink-2); }
.light .brand { color: var(--ink); }

.hero { padding: 68px 0 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px; padding: 6px 12px 6px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85); font-size: 13px; font-weight: 500; letter-spacing: .01em;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 74px);
  line-height: .98;
  letter-spacing: -0.045em;
  font-weight: 800;
  max-width: 16ch;
}
h1 .hl {
  background: linear-gradient(90deg, #4ade80, #34d399 60%, #2dd4bf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { margin: 0; font-size: clamp(16px, 1.9vw, 19px); color: rgba(255, 255, 255, .62); max-width: 56ch; line-height: 1.5; }

.panel {
  margin: 34px 0 0; padding: 12px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.field { display: flex; gap: 8px; align-items: stretch; background: #fff; border-radius: 999px; padding: 6px 6px 6px 22px; }
.field input {
  flex: 1; min-width: 0; border: 0; background: none; padding: 10px 0;
  font: inherit; font-size: 16px; color: var(--ink);
}
.field input::placeholder { color: var(--ink-3); }
.field input:focus { outline: none; }
.go {
  border: 0; border-radius: 999px; padding: 12px 24px;
  background: var(--accent); color: #05240f; font-weight: 700; font-size: 15px; white-space: nowrap;
  transition: transform .15s, background .15s, box-shadow .15s;
  box-shadow: 0 8px 24px -8px rgba(34, 197, 94, .7);
}
.go:hover { background: #4ade80; transform: translateY(-1px); }
.go:active { transform: translateY(0); }
.go:disabled { background: #6b7570; color: #cfd6d2; box-shadow: none; cursor: default; transform: none; }
.hint { margin: 12px 0 0 12px; font-size: 14px; color: rgba(255, 255, 255, .55); min-height: 21px; }
.hint.bad { color: #fca5a5; }
.what { margin: 10px 0 2px 12px; display: flex; flex-wrap: wrap; gap: 6px 8px; font-size: 13px; }
.what span {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px;
  background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .8);
}
.what span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* ---------- витрина ---------- */

.section-title {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin: 48px 0 16px; font-size: 14px; color: var(--ink-3);
}
.section-title h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.demo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.demo {
  text-align: left; background: var(--paper); border: 0; border-radius: var(--r-s);
  padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.demo:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.demo[aria-pressed='true'] { box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.demo b { font-size: 17px; line-height: 1.2; letter-spacing: -0.02em; }
.demo .sub { font-size: 13px; color: var(--ink-2); }
.demo .stat { display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: var(--ink-2); margin-top: 8px; align-items: center; }
.demo .stat .r { color: var(--accent-2); font-weight: 700; background: var(--accent-soft); border-radius: 999px; padding: 2px 9px; }
.demo .stat .r::before { content: '★ '; }

/* ---------- ожидание ---------- */

.progress { margin: 30px 0 0; }
.wait { background: var(--paper); border-radius: var(--r); box-shadow: var(--shadow); padding: 24px 24px 22px; }
.wait-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.wait-head b { font-size: 20px; letter-spacing: -0.025em; font-weight: 800; }
.wait-head span { font-size: 14px; color: var(--ink-2); }
.bar { height: 8px; background: var(--bg); border-radius: 999px; overflow: hidden; margin: 16px 0 0; }
.bar i {
  display: block; height: 100%; width: 3%; border-radius: 999px; transition: width 1s linear;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), #86efac);
  background-size: 200% 100%; animation: flow 2.2s linear infinite;
}
.stages { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.stages li { display: flex; gap: 12px; align-items: center; color: var(--ink-3); font-size: 15px; transition: color .2s; }
.stages li .i {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none;
  display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff; transition: background .2s, border-color .2s;
}
.stages li.active { color: var(--ink); font-weight: 500; }
.stages li.active .i { border-color: var(--accent); border-top-color: transparent; animation: spin .8s linear infinite; }
.stages li.done { color: var(--ink-2); }
.stages li.done .i { background: var(--accent); border-color: var(--accent); }
.stages li.done .i::after { content: '✓'; }
.tip {
  margin: 20px 0 0; padding: 14px 16px; border-radius: var(--r-s); background: var(--bg);
  font-size: 14px; color: var(--ink-2); min-height: 48px; display: flex; gap: 12px; align-items: center;
}
.tip::before { content: ''; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.tip span { animation: fade .5s ease; }
.skeleton { margin: 20px 0 0; display: grid; gap: 10px; }
.skeleton i { display: block; height: 12px; border-radius: 6px; background: linear-gradient(90deg, #eceee9 25%, #f7f8f5 50%, #eceee9 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.skeleton i:nth-child(1) { width: 70%; } .skeleton i:nth-child(2) { width: 90%; } .skeleton i:nth-child(3) { width: 55%; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes flow { to { background-position: -200% 0; } }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@keyframes shimmer { to { background-position: -200% 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- пульс карточки ---------- */

.pulse { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; margin: 12px 0 0; }
.p-tile {
  background: var(--paper); border-radius: var(--r-s); padding: 16px 16px 14px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 4px; min-height: 128px;
}
.p-tile > b { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.p-tile > b small { font-size: 14px; color: var(--ink-3); letter-spacing: 0; margin-left: 2px; }
.p-tile > b.good { color: var(--accent-2); }
.p-tile > b.mid { color: #a16207; }
.p-tile > b.bad { color: #b91c1c; }
.p-tile > span { font-size: 13px; color: var(--ink-2); }
.p-tile > em { font-style: normal; font-size: 12px; color: var(--ink-3); margin-top: auto; padding-top: 6px; }
.p-tile > em strong { color: #b91c1c; font-weight: 700; }
.p-tile .soon { font-size: 11px; color: var(--ink-3); border: 1px dashed var(--line); border-radius: 999px; padding: 2px 8px; align-self: flex-start; margin-top: 6px; }
.bars { display: flex; gap: 6px; align-items: flex-end; height: 56px; margin-top: 6px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 3px; }
.bar-col i { display: block; width: 100%; max-width: 26px; background: var(--accent-soft); border-top: 3px solid var(--accent); border-radius: 4px 4px 0 0; }
.bar-col span { font-size: 10px; color: var(--ink-3); }
.spark { display: flex; gap: 2px; align-items: flex-end; height: 40px; margin-top: 6px; }
.spark i { display: block; flex: 1; background: var(--accent-soft); border-radius: 2px 2px 0 0; min-width: 3px; }
.spark i.neg { background: var(--danger-soft); }
.p-checks { margin: 10px 0 0; background: var(--paper); border-radius: var(--r-s); box-shadow: var(--shadow); padding: 12px 16px; }
.p-checks summary { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.p-checks ul { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px 18px; }
.p-checks li { display: grid; grid-template-columns: 18px 1fr auto; gap: 4px 8px; align-items: baseline; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--line); }
.p-checks li::before { content: '✓'; color: var(--accent-2); font-weight: 800; }
.p-checks li.no::before { content: '✕'; color: #b91c1c; }
.p-checks li b { font-weight: 600; }
.p-checks li > span { color: var(--ink-2); font-size: 13px; }
.p-checks li p { grid-column: 2 / -1; margin: 0; font-size: 13px; color: var(--ink-2); }
.upsell li.soon { opacity: .75; }
.upsell li.soon::before { background: var(--ink-3); }

/* ---------- отчёт ---------- */

.report { margin: 36px 0 0; }
.firm {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 100% 0%, #1c2b21 0%, var(--dark-2) 45%, var(--dark) 100%);
  color: #fff; border-radius: var(--r); padding: 28px 28px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 20px 28px; align-items: center;
}
.firm h2 { margin: 0; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; }
.firm .cat { margin: 10px 0 0; color: rgba(255, 255, 255, .6); font-size: 15px; }
.firm .links { margin: 18px 0 0; display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; }
.firm .links a {
  color: #fff; text-decoration: none; padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); transition: background .15s;
}
.firm .links a:hover { background: rgba(255, 255, 255, .16); }
.firm .links .muted { color: rgba(255, 255, 255, .45); padding: 6px 4px; }
.firm .links.stats { margin-top: 8px; gap: 4px 14px; }
.firm .links.stats .muted { padding: 0; color: rgba(255, 255, 255, .55); }
.src-chip { display: inline-block; padding: 1px 8px; border-radius: 999px; background: var(--bg); color: var(--ink-2); font-weight: 600; }
.src-chip.direct { background: var(--accent-soft); color: var(--accent-2); }
.src-chip.web { background: var(--warn-soft); color: #8a5e00; }
.rating {
  text-align: center; padding: 16px 22px; border-radius: 18px; min-width: 150px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
}
.rating .num {
  font-size: 56px; font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(180deg, #fff, #86efac); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rating .num small { font-size: 20px; color: var(--accent); -webkit-text-fill-color: var(--accent); margin-left: 3px; vertical-align: super; }
.rating .rev { color: rgba(255, 255, 255, .6); font-size: 13px; margin-top: 6px; }
.rating.none .num { font-size: 15px; letter-spacing: 0; font-weight: 500; color: rgba(255, 255, 255, .6); -webkit-text-fill-color: currentColor; background: none; }

.tabs {
  display: flex; flex-wrap: wrap; gap: 4px; margin: 14px 0 0; padding: 4px; border-radius: 22px;
  background: rgba(12, 15, 13, .06);
}
.tab {
  flex: none; border: 0; border-radius: 999px; background: transparent;
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink-2);
  display: inline-flex; gap: 7px; align-items: center; white-space: nowrap; transition: background .15s, color .15s, box-shadow .15s;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected='true'] { background: var(--paper); color: var(--ink); box-shadow: 0 1px 2px rgba(12, 15, 13, .08), 0 4px 12px -4px rgba(12, 15, 13, .2); }
.tab .n { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.tab.locked { color: var(--ink-3); }
.tab.locked::before, .tab.pending::before { content: ''; width: 12px; height: 12px; flex: none; }
.tab.locked::before {
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tab.pending { color: var(--ink-3); }
.tab.refreshing::after { content: ''; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--accent); animation: spin .8s linear infinite; }
.tab.pending::before { border-radius: 50%; border: 2px solid var(--line); border-top-color: var(--accent); animation: spin .8s linear infinite; }

.section { margin: 22px 0 0; animation: rise .35s ease; }
.section.off { display: none; }
.sec-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 0 0 12px; }
.sec-head h3 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.03em; }
.sec-head .when { font-size: 13px; color: var(--ink-3); }
.summary {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(34, 197, 94, .16), rgba(45, 212, 191, .08));
  border-radius: var(--r-s); padding: 18px 20px 18px 22px; font-size: 18px; line-height: 1.45; letter-spacing: -0.012em;
}
.summary::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.summary b { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent-2); margin: 0 0 8px; }

.findings { margin: 12px 0 0; display: grid; gap: 10px; }
.finding {
  background: var(--paper); border-radius: var(--r-s); padding: 18px 20px 18px 18px;
  display: grid; grid-template-columns: 34px 1fr; gap: 6px 14px; box-shadow: var(--shadow);
  animation: rise .4s ease both;
}
.finding:nth-child(2) { animation-delay: .05s; } .finding:nth-child(3) { animation-delay: .1s; }
.finding:nth-child(4) { animation-delay: .15s; } .finding:nth-child(5) { animation-delay: .2s; }
.finding .num {
  grid-row: 1 / span 3; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-size: 14px; font-weight: 800; background: var(--bg); color: var(--ink-2);
}
.finding.w-high .num { background: var(--danger-soft); color: #b91c1c; }
.finding.w-medium .num { background: var(--warn-soft); color: #a16207; }
.finding.w-low .num { background: var(--bg); color: var(--ink-3); }
.finding.kind-strength .num { background: var(--accent-soft); color: var(--accent-2); }
.finding.kind-action .num { background: var(--ink); color: #fff; }
.finding h4 { margin: 0; font-size: 18px; line-height: 1.25; letter-spacing: -0.02em; font-weight: 700; align-self: center; }
.finding > p { margin: 0; color: #2f3531; white-space: pre-wrap; max-width: 70ch; grid-column: 2; }
.finding .extra { grid-column: 2; }
.tags { grid-column: 2; order: 1; display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; margin: 6px 0 0; color: var(--ink-3); }
.tag { display: inline-flex; align-items: center; gap: 6px; }
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.tag.proven { color: var(--accent-2); }
.tag.hyp { color: var(--ink-3); }
.tag.high { color: #b91c1c; }
.tag.medium { color: #a16207; }
.tag.low { color: var(--ink-3); }

.quote {
  position: relative; margin: 12px 0 0; padding: 12px 14px 12px 36px; background: var(--bg); border-radius: 12px;
  font-size: 14px; max-width: 66ch;
}
.quote::before { content: '“'; position: absolute; left: 12px; top: 4px; font-size: 30px; line-height: 1; color: var(--accent); font-weight: 800; }
.quote + .quote { margin-top: 6px; }
.quote .src { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-3); }
.quote .src a { color: var(--ink-2); }

.channels { margin: 14px 0 0; display: grid; gap: 8px; max-width: 66ch; }
.channel { border-radius: 12px; padding: 12px 14px; background: var(--bg); }
.channel header { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }
.channel p { margin: 0; font-size: 14px; white-space: pre-wrap; }
.copy { border: 0; background: none; padding: 2px 6px; margin: -2px -6px; font-size: 12px; color: var(--accent-2); font-weight: 700; text-transform: none; letter-spacing: 0; }

.notes { margin: 16px 0 0; font-size: 14px; color: var(--ink-2); max-width: 72ch; }
.notes b { color: var(--ink); font-weight: 600; }
.notes.thin { margin: 12px 0 0; padding: 10px 14px; border-radius: 12px; background: var(--warn-soft); color: #7a4b00; }
.footnote { margin: 14px 0 0; font-size: 13px; color: var(--ink-3); }
.actions { margin: 14px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.actions button, .btn {
  border: 1px solid var(--line); border-radius: 999px; background: var(--paper);
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: background .15s, transform .15s, box-shadow .15s;
}
.actions button:hover, .btn:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn.primary:hover { background: #222; }
.empty { padding: 22px; background: var(--paper); border-radius: var(--r-s); color: var(--ink-2); box-shadow: var(--shadow); }

/* ---------- закрытые разделы и заявка ---------- */

.upsell { margin: 18px 0 0; padding: 20px 22px; border-radius: var(--r-s); background: var(--paper); box-shadow: var(--shadow); display: grid; gap: 12px; }
.upsell h3 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.upsell ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 15px; }
.upsell li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: baseline; }
.upsell li::before {
  content: ''; width: 14px; height: 14px; align-self: center; background: var(--ink-3);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.upsell li b { font-weight: 700; }
.upsell li span { color: var(--ink-2); }

.lead {
  position: relative; overflow: hidden; margin: 18px 0 0; padding: 26px 26px 24px; border-radius: var(--r);
  background: var(--dark); color: #fff; box-shadow: var(--shadow);
}
.lead::before { content: ''; position: absolute; width: 420px; height: 420px; right: -140px; top: -200px; border-radius: 50%; background: rgba(34, 197, 94, .35); filter: blur(70px); pointer-events: none; }
.lead > * { position: relative; }
.lead h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -0.03em; font-weight: 800; }
.lead p { margin: 0 0 18px; color: rgba(255, 255, 255, .62); max-width: 60ch; }
.lead form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead input, .lead textarea {
  border: 0; border-radius: 14px; padding: 13px 16px; font: inherit; font-size: 15px; background: #fff; color: var(--ink); width: 100%;
}
.lead textarea { grid-column: 1 / -1; resize: vertical; min-height: 48px; }
.lead input:focus, .lead textarea:focus { outline: 3px solid rgba(34, 197, 94, .45); }
.lead .go { grid-column: 1 / -1; justify-self: start; }
.lead .msg { grid-column: 1 / -1; margin: 0; font-size: 14px; color: rgba(255, 255, 255, .7); min-height: 0; }
.lead .msg.bad { color: #fca5a5; }
.lead .thanks { font-size: 18px; font-weight: 700; margin: 0; color: #fff; }

/* ---------- страница отчёта ---------- */

.toolbar {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center; justify-content: space-between;
  padding: 20px 0 0; font-size: 14px; color: var(--ink-2);
}
.toolbar .right { display: flex; gap: 8px; flex-wrap: wrap; }
.print-only { display: none; }

footer { margin: 72px 0 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

@media (max-width: 680px) {
  .hero { padding: 48px 0 40px; }
  .hero-bg { border-radius: 0 0 24px 24px; }
  .field { flex-direction: column; border-radius: 18px; padding: 8px; }
  .field input { padding: 10px 12px; }
  .go { width: 100%; padding: 13px; }
  .firm { grid-template-columns: 1fr; padding: 22px; }
  .rating { text-align: left; display: flex; align-items: baseline; gap: 12px; }
  .rating .num { font-size: 40px; }
  .lead form { grid-template-columns: 1fr; }
  .top .contact { display: none; }
  .finding { grid-template-columns: 30px 1fr; padding: 16px; }
  .finding .num { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- печать: отчёт целиком, все разделы подряд ---------- */

@media print {
  body { background: #fff; font-size: 12.5px; color: #000; }
  .wrap { max-width: none; padding: 0; }
  .top, .toolbar, .tabs, .actions, .lead, .upsell, footer, .no-print { display: none !important; }
  .print-only { display: block; }
  .firm { background: #fff; color: #000; border: 2px solid #000; border-radius: 0; padding: 16px 18px; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .firm .cat, .rating .rev { color: #444; }
  .firm .links a { color: #000; background: none; border: 1px solid #999; }
  .rating { border-color: #ccc; background: none; }
  .rating .num { background: none; color: #000; -webkit-text-fill-color: #000; }
  .section { display: block !important; margin: 22px 0 0; animation: none; }
  .section + .section { break-before: page; }
  .summary { background: #f2f2f2; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .summary b { color: #000; }
  .finding { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; animation: none; }
  .p-tile, .p-checks { box-shadow: none; border: 1px solid #ddd; }
  .p-checks[open] summary, .p-checks summary { list-style: none; }
  .p-checks ul { display: grid !important; }
  .p-tile .soon { display: none; }
  .finding .num { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .quote, .channel { background: #f6f6f6; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a[href]::after { content: none; }
}
