/* ────────────────────────────────────────────────────────────
   Пробиваем. — landing stylesheet
   Modern 2026: gradient mesh, glass, bento, soft glow.
   No external fonts, no frameworks.
   ──────────────────────────────────────────────────────────── */

:root {
    --bg:        #07080b;
    --bg-2:      #0b0d12;
    --bg-3:      #0f1219;
    --surface:   rgba(22, 26, 36, 0.72);
    --surface-solid: #161a24;
    --surface-2: #1b2030;
    --surface-3: #252c3e;

    --text:      #eef0f5;
    --text-dim:  #c7ccd6;
    --muted:     #9198a5;
    --dim:       #5f6672;

    --accent:    #ffc94a;
    --accent-hi: #ffe28a;
    --accent-2:  #ff5d8f;
    --accent-2-hi:#ff89ae;
    --accent-3:  #7cf0c0;
    --accent-4:  #8b9cff;

    --good:      #38e0a8;
    --warn:      #ffc94a;
    --bad:       #ff5d8f;

    --border:    rgba(255, 255, 255, 0.08);
    --border-2:  rgba(255, 255, 255, 0.12);
    --border-hi: rgba(255, 201, 74, 0.45);

    --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 30px 80px -20px rgba(255, 93, 143, 0.25);

    --radius-sm: 10px;
    --radius:    14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --grad-hot: linear-gradient(92deg, #ffc94a 0%, #ff5d8f 55%, #8b9cff 100%);
    --grad-cool: linear-gradient(135deg, #8b9cff 0%, #7cf0c0 100%);
}

* { box-sizing: border-box; }
*::selection { background: rgba(255, 201, 74, 0.35); color: #111; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display",
                 "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial,
                 "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01", "cv11";
    overflow-x: clip;
}

a { color: var(--text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }

button, input { font: inherit; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ─────────── Ambient background ─────────── */

.bg-orb {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    will-change: auto;
    contain: strict;
}
.orb-1 {
    width: 720px; height: 720px;
    top: -260px; left: -200px;
    background: radial-gradient(circle, rgba(255, 201, 74, 0.55) 0%, rgba(255, 201, 74, 0) 70%);
}
.orb-2 {
    width: 620px; height: 620px;
    top: 120px; right: -200px;
    background: radial-gradient(circle, rgba(255, 93, 143, 0.45) 0%, rgba(255, 93, 143, 0) 70%);
}
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 25%, transparent 75%);
}

/* ─────────── Gradient helpers ─────────── */

.grad-text {
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.accent { color: var(--accent); }

/* ─────────── Nav ─────────── */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 8, 11, 0.92);
    border-bottom: 1px solid var(--border);
}
@supports (backdrop-filter: blur(1px)) {
    .nav {
        background: rgba(7, 8, 11, 0.65);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.025em;
}
.brand:hover { color: var(--text); }
.brand .dot { color: var(--accent-2); }
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: var(--grad-hot);
    color: #0a0b0f;
    box-shadow: 0 6px 18px -4px rgba(255, 201, 74, 0.55);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 8px;
}
.nav-links a {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--grad-hot);
    border-radius: 2px;
    transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0b0f;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.01em;
    transition: transform .12s ease, box-shadow .2s ease;
    box-shadow: 0 6px 20px -6px rgba(255, 201, 74, 0.6);
}
.nav-cta:hover {
    color: #0a0b0f;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -6px rgba(255, 201, 74, 0.8);
}

/* ─────────── Hero ─────────── */

.hero {
    position: relative;
    padding: 80px 0 110px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 18% 35%, rgba(255, 201, 74, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(255, 93, 143, 0.16) 0%, transparent 55%),
        radial-gradient(ellipse 60% 55% at 65% 15%, rgba(139, 156, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 72px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    background: rgba(20, 24, 33, 0.92);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-weight: 500;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.dot-pulse::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--accent-2);
    opacity: 0.5;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%   { transform: scale(0.6); opacity: 0.55; }
    70%  { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
}

h1 {
    font-size: clamp(44px, 6.2vw, 80px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
    font-weight: 800;
    color: var(--text);
}
h1 .accent {
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}

.lead {
    font-size: clamp(17px, 1.3vw, 19px);
    color: var(--text-dim);
    max-width: 560px;
    margin: 0 0 36px;
    line-height: 1.55;
    font-weight: 400;
}

/* ─────── Check form ─────── */

.check-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(17, 20, 27, 0.95);
    padding: 6px 6px 6px 18px;
    border-radius: 16px;
    border: 1px solid var(--border-2);
    max-width: 640px;
    box-shadow: var(--shadow-soft);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.check-form::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--grad-hot);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.check-form:focus-within { transform: translateY(-1px); }
.check-form:focus-within::after { opacity: 1; }

.check-form-icon {
    display: inline-flex;
    color: var(--muted);
    flex-shrink: 0;
}
.check-form:focus-within .check-form-icon { color: var(--accent); }

.check-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 4px;
    font-size: 16px;
    color: var(--text);
    font-family: inherit;
    min-width: 0;
}
/* a11y: placeholder contrast AA (4.5:1 на var(--bg-3)=#0f1219). */
.check-form input::placeholder { color: var(--muted); opacity: 1; }

/* a11y: visually-hidden label для скринридеров. */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

.check-form button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* P0-design: primary CTA всегда яркая (градиент в дефолте), не сливается с фоном. */
    background: var(--grad-hot);
    color: #0a0b0f;
    border: none;
    font-weight: 800;
    padding: 12px 22px;
    border-radius: 11px;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
    transition: transform .12s ease, box-shadow .2s ease, filter .25s ease;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px -10px rgba(255, 93, 143, 0.55);
}
.check-form button > * { position: relative; z-index: 1; }
.check-form button:hover {
    transform: translateY(-1px);
    filter: brightness(1.06) saturate(1.1);
    box-shadow: 0 18px 42px -10px rgba(255, 93, 143, 0.7);
}
.check-form button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.check-form button:disabled::before { opacity: 0; }

.hero-meta {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}
.hero-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-meta .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(56, 224, 168, 0.15);
    color: var(--good);
    font-size: 11px;
    font-weight: 800;
}

.status {
    margin-top: 24px;
    color: var(--muted);
    min-height: 22px;
    font-size: 14px;
}
.status.error { color: var(--bad); }

/* ─────── Hero preview card ─────── */

.hero-preview {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    isolation: isolate;
}
/* P0-design: явная подпись «Пример разбора» — preview не должен выглядеть как твой результат. */
.preview-tag {
    display: inline-block;
    margin: 0 0 10px 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

/* P0-design: ссылка-источник в hero-badge, приглушённая. */
.hero-badge-src {
    color: inherit;
    opacity: 0.65;
    text-decoration: none;
    border-bottom: 1px dotted currentColor;
    margin-left: 2px;
}
.hero-badge-src:hover { opacity: 1; color: var(--accent); }
/* P0-design: убрали агрессивный glow вокруг preview, он перетягивал взгляд с H1. */
.preview-glow { display: none; }

.preview-card {
    position: relative;
    background: var(--surface-solid);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 22px 22px 20px;
    box-shadow:
        0 40px 80px -30px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transform: rotate(-0.6deg);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.preview-card:hover { transform: rotate(0deg) translateY(-4px); }

.preview-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--border-2);
}
.preview-thumb {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2f40 0%, #1a1d28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.preview-head-text { min-width: 0; flex: 1; }
.preview-brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 700;
}
.preview-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 3px;
    color: var(--text);
    line-height: 1.25;
}
.preview-meta {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
}
.preview-meta span:first-child { color: var(--text); font-weight: 700; }

.preview-verdict {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255, 93, 143, 0.08);
    border: 1px solid rgba(255, 93, 143, 0.25);
    border-radius: 12px;
}
.preview-badge {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.preview-badge.avoid {
    background: rgba(255, 93, 143, 0.18);
    color: #ff89ae;
    border: 1px solid rgba(255, 93, 143, 0.4);
}
.preview-verdict-text {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
}

.preview-score {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 18px;
}
.preview-score-num {
    /* P0-design: было 64px, сливалось по весу с H1. Уменьшили — preview остаётся декором. */
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.045em;
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.preview-score-num span {
    font-size: 28px;
    background: inherit;
    -webkit-background-clip: text;
            background-clip: text;
    margin-left: 2px;
}
.preview-score-label {
    font-size: 12px;
    color: var(--muted);
    max-width: 120px;
    line-height: 1.35;
}

.preview-bar {
    display: flex;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.05);
}
.preview-seg { display: block; height: 100%; }
.seg-fake { background: var(--bad); }
.seg-susp { background: var(--warn); }
.seg-real { background: var(--good); }

.preview-legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
}
.preview-legend i {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
.d-fake { background: var(--bad); }
.d-susp { background: var(--warn); }
.d-real { background: var(--good); }

.preview-flags {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.preview-flag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 12.5px;
    color: var(--text-dim);
}
.preview-flag b {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
}

/* ─────────── Marquee ─────────── */

.marquee {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(11, 13, 18, 0.7);
    mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 85%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: -0.01em;
    will-change: transform;
}
.marquee-track span { flex-shrink: 0; }
.marquee-track .sep { color: var(--accent-2); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─────────── Sections shared ─────────── */

.section {
    position: relative;
    padding: 120px 0;
}
.section + .section { border-top: 1px solid var(--border); }

/* Skip layout/paint for off-screen long sections to keep scroll smooth */
.section-how,
.section-why,
.section-faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
}
.section-what {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
}

.section-title {
    text-align: center;
    margin-bottom: 72px;
}
.section-kicker {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 201, 74, 0.08);
    border: 1px solid rgba(255, 201, 74, 0.25);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-title h2 {
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0;
    font-weight: 800;
    max-width: 880px;
    margin-inline: auto;
}

/* ─────────── Steps ─────────── */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}
.step {
    position: relative;
    background: rgba(22, 26, 36, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 30px;
    transition: border-color .2s ease, transform .25s ease, background .2s ease;
    overflow: hidden;
}
.step::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    background: var(--grad-hot);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -1;
    filter: blur(18px);
}
.step:hover {
    border-color: var(--border-hi);
    transform: translateY(-4px);
}
.step:hover::before { opacity: 0.35; }

.step-num {
    display: inline-block;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 18px;
    padding: 4px 10px;
    background: rgba(255, 201, 74, 0.08);
    border: 1px solid rgba(255, 201, 74, 0.2);
    border-radius: 6px;
}

.step h3 {
    font-size: 22px;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.step p { color: var(--text-dim); margin: 0; font-size: 15px; line-height: 1.55; }

/* ─────────── Bento (Features) ─────────── */

.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
}
.bento-card {
    position: relative;
    background: rgba(22, 26, 36, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color .2s ease, transform .25s ease, background .2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.bento-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.bento-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-3px);
}

.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
    background:
        radial-gradient(ellipse at top right, rgba(255, 201, 74, 0.12) 0%, transparent 60%),
        rgba(22, 26, 36, 0.92);
}
.bento-wide { grid-column: span 2; }
.bento-dark {
    background: linear-gradient(135deg, rgba(255, 93, 143, 0.08) 0%, rgba(139, 156, 255, 0.05) 100%), rgba(13, 15, 21, 0.85);
    border-color: rgba(255, 93, 143, 0.2);
}

.bento-icon {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-2);
    color: var(--accent);
    margin-bottom: 18px;
}
.bento-dark .bento-icon {
    color: var(--accent-2);
    background: rgba(255, 93, 143, 0.08);
    border-color: rgba(255, 93, 143, 0.25);
}

.bento-card h3 {
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.bento-hero h3 { font-size: 26px; }
.bento-card p {
    color: var(--text-dim);
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.bento-big {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}
.bento-big-num {
    font-size: 88px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.bento-big-num b {
    font-size: 36px;
    font-weight: 800;
    background: inherit;
    -webkit-background-clip: text;
            background-clip: text;
    margin-left: 2px;
}
.bento-big-label {
    font-size: 13px;
    color: var(--muted);
    padding-bottom: 10px;
    max-width: 180px;
    line-height: 1.35;
}

.bento-bar {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    gap: 2px;
}
.bb { display: block; height: 100%; }
.bb-fake { background: var(--bad); width: 32%; }
.bb-susp { background: var(--warn); width: 26%; }
.bb-real { background: var(--good); flex: 1; }

/* ─────────── Reasons ─────────── */

.reasons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.reason {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: flex-start;
    background: rgba(22, 26, 36, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: border-color .2s ease, transform .2s ease;
}
.reason:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}
.reason-num {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
    padding-top: 2px;
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.reason-body h3 {
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
    font-weight: 700;
}
.reason-body p {
    color: var(--text-dim);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ─────────── FAQ ─────────── */

.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq details {
    background: rgba(22, 26, 36, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    transition: border-color .2s ease, background .2s ease;
}
.faq details[open] {
    border-color: var(--border-hi);
    background: rgba(22, 26, 36, 0.85);
}
.faq summary {
    cursor: pointer;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "";
    width: 22px; height: 22px;
    flex-shrink: 0;
    background-image:
        linear-gradient(var(--accent), var(--accent)),
        linear-gradient(var(--accent), var(--accent));
    background-size: 10px 2px, 2px 10px;
    background-position: center, center;
    background-repeat: no-repeat;
    transition: transform .25s ease;
}
.faq details[open] summary::after {
    transform: rotate(90deg);
    background-size: 10px 2px, 0 0;
}
.faq details p {
    padding: 0 24px 22px;
    margin: 0;
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.65;
}

/* ─────────── CTA ─────────── */

.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.cta-inner {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, rgba(22, 26, 36, 0.85) 0%, rgba(15, 18, 25, 0.85) 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 80px 32px;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    inset: -50% -10% auto -10%;
    height: 120%;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(255, 201, 74, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(255, 93, 143, 0.18), transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.cta-inner > * { position: relative; z-index: 1; }

.cta-kicker {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 201, 74, 0.1);
    border: 1px solid rgba(255, 201, 74, 0.25);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 22px;
}
.cta h2 {
    font-size: clamp(36px, 5.6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0 0 18px;
    font-weight: 800;
}
.cta h2 .accent {
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.cta p {
    color: var(--text-dim);
    font-size: 18px;
    margin: 0 0 36px;
    max-width: 520px;
    margin-inline: auto;
}
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text);
    color: #0a0b0f;
    padding: 18px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: transform .12s ease, box-shadow .25s ease, color .2s ease;
    overflow: hidden;
}
.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-hot);
    opacity: 0;
    transition: opacity .25s ease;
}
.cta-btn > * { position: relative; z-index: 1; }
.cta-btn:hover {
    color: #0a0b0f;
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -14px rgba(255, 93, 143, 0.55);
}
.cta-btn:hover::before { opacity: 1; }

/* ─────────── Result (preserve selectors) ─────────── */

.result {
    background: var(--surface-solid);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 40px 0;
    box-shadow: var(--shadow-soft);
    animation: fadeIn 0.45s cubic-bezier(.2,.8,.2,1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────── Result anchor (in-card) ─────── */

.result-anchor {
    display: inline-block;
    padding: 7px 14px;
    margin: -6px 0 22px;
    background: rgba(255, 201, 74, 0.1);
    border: 1px solid rgba(255, 201, 74, 0.35);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─────── Skeleton loader ─────── */

.sk-anchor {
    display: block;
    margin: 24px 0 16px;
    color: var(--accent);
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.sk-anchor-err { color: var(--bad); }

.result-skeleton {
    position: relative;
    background: var(--surface-solid);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 0 0 40px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0.9;
}
.result-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        transparent 30%,
        rgba(255, 201, 74, 0.08) 45%,
        rgba(255, 93, 143, 0.10) 55%,
        transparent 70%
    );
    transform: translateX(-100%);
    animation: shimmer 1.6s linear infinite;
    pointer-events: none;
}
@keyframes shimmer {
    from { transform: translateX(-100%); }
    to   { transform: translateX(100%); }
}

.sk-block {
    position: relative;
    z-index: 1;
}
.sk-product {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.sk-thumb {
    width: 140px; height: 140px;
    border-radius: 14px;
    background: var(--surface-2);
    flex-shrink: 0;
}
.sk-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sk-line {
    height: 14px;
    border-radius: 6px;
    background: var(--surface-2);
}
.sk-line-sm   { width: 35%; height: 10px; }
.sk-line-md   { width: 60%; }
.sk-line-lg   { width: 85%; height: 20px; }
.sk-line-full { width: 100%; }

.sk-verdict {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.sk-pill {
    width: 160px;
    height: 38px;
    border-radius: 10px;
    background: var(--surface-2);
}

.sk-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sk-num {
    width: 140px;
    height: 56px;
    border-radius: 10px;
    background: var(--surface-2);
}
.sk-bar {
    height: 18px;
    border-radius: 9px;
    background: var(--surface-2);
}

/* ─────── Error card ─────── */

.result-error {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: rgba(255, 93, 143, 0.06);
    border: 1px solid rgba(255, 93, 143, 0.45);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    margin: 0 0 40px;
    box-shadow: 0 20px 60px -20px rgba(255, 93, 143, 0.35);
    animation: fadeIn 0.4s cubic-bezier(.2,.8,.2,1);
}
.result-error-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255, 93, 143, 0.18);
    border: 1px solid rgba(255, 93, 143, 0.5);
    color: var(--bad);
    font-weight: 800;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.result-error-body { flex: 1; min-width: 0; }
.result-error-body h2 {
    margin: 0 0 8px;
    font-size: 26px;
    letter-spacing: -0.02em;
    color: var(--bad);
    font-weight: 800;
}
.result-error-body p {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}
.result-error-hint { color: var(--muted) !important; font-size: 13.5px !important; }

/* ─────── Hide decorative preview after first real result ─────── */

body.has-result .hero-preview { display: none; }

.product-card {
    display: flex;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.product-image {
    width: 140px; height: 140px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--surface-2);
    flex-shrink: 0;
}
.product-info { flex: 1; min-width: 0; }
.product-brand {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    font-weight: 700;
}
.product-name {
    font-size: 24px;
    line-height: 1.22;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.product-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}
.product-price { color: var(--text); font-weight: 700; font-size: 20px; }

.verdict-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.verdict-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}
.verdict-badge.trusted { background: rgba(56, 224, 168, 0.12); color: var(--good); border: 1px solid rgba(56, 224, 168, 0.5); }
.verdict-badge.caution { background: rgba(255, 201, 74, 0.12); color: var(--warn); border: 1px solid rgba(255, 201, 74, 0.5); }
.verdict-badge.avoid   { background: rgba(255, 93, 143, 0.12); color: var(--bad); border: 1px solid rgba(255, 93, 143, 0.5); }
.verdict-reasoning { color: var(--text); font-size: 16px; line-height: 1.5; flex: 1; min-width: 240px; }

.metrics {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.metric-big { text-align: center; }
.metric-value {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    background: var(--grad-hot);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
            color: transparent;
}
.metric-label { color: var(--muted); font-size: 14px; margin-top: 10px; }

.bar {
    display: flex;
    height: 18px;
    border-radius: 9px;
    overflow: hidden;
    background: var(--surface-2);
    margin-bottom: 16px;
}
.bar-fill { display: block; height: 100%; transition: width .6s cubic-bezier(.2,.8,.2,1); }
.bar-fake { background: var(--bad); }
.bar-suspicious { background: var(--warn); }
.bar-real { background: var(--good); }

.bar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 14px;
}
.bar-legend i {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.dot-fake { background: var(--bad); }
.dot-suspicious { background: var(--warn); }
.dot-real { background: var(--good); }
.bar-legend b { color: var(--text); }

.complaints, .flags {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.flags:last-child { border-bottom: none; padding-bottom: 0; }
.complaints h3, .flags h3 {
    margin: 0 0 14px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.complaints-body { color: var(--text); font-size: 16px; white-space: pre-wrap; line-height: 1.55; }

.flags-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flags-list li {
    background: var(--surface-2);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
}
.flags-list li span.count { color: var(--accent); font-weight: 800; }

/* ─────────── Legal pages ─────────── */

.legal-page {
    padding-top: 140px;
    padding-bottom: 120px;
}
.legal-content {
    max-width: 780px;
}
.legal-kicker {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 201, 74, 0.08);
    border: 1px solid rgba(255, 201, 74, 0.25);
    border-radius: 999px;
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 24px;
}
.legal-title {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 0 0 12px;
    font-weight: 800;
}
.legal-updated {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 36px;
    letter-spacing: 0.02em;
}
.legal-lead {
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-dim);
    margin: 0 0 40px;
    padding: 22px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}
.legal-section {
    margin-top: 36px;
}
.legal-section h2 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.legal-section p,
.legal-section li {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
}
.legal-section p { margin: 0 0 10px; }
.legal-section ul {
    margin: 10px 0 0;
    padding-left: 0;
    list-style: none;
}
.legal-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}
.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.85;
}
.legal-section a {
    color: var(--accent);
    border-bottom: 1px solid rgba(255, 201, 74, 0.4);
    transition: color .15s ease, border-color .15s ease;
}
.legal-section a:hover {
    color: var(--accent-hi);
    border-bottom-color: var(--accent-hi);
}

/* ─────────── Footer ─────────── */

footer {
    padding: 72px 0 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 18, 0.9) 40%);
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
}
.footer-col-brand .brand { margin-bottom: 14px; }
.footer-col h4 {
    color: var(--text);
    font-size: 13px;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}
.footer-col a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; max-width: 360px; }
.footer-bottom {
    padding-top: 24px;
    color: var(--dim);
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-motto {
    color: var(--muted);
    font-style: italic;
}

/* ─────────── Reveal animation ─────────── */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .dot-pulse::before { animation: none; }
    .marquee-track { animation: none; transform: translateX(0); will-change: auto; }
}

/* ─────────── Responsive ─────────── */

@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-preview { max-width: 460px; margin: 0 auto; }
    .bento-hero { grid-column: span 3; grid-row: auto; }
    .bento-wide { grid-column: span 3; }
}

@media (max-width: 900px) {
    .section { padding: 88px 0; }
    .section-title { margin-bottom: 48px; }
    .steps { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
    .bento-hero, .bento-wide { grid-column: span 2; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-links { display: none; }
    .nav-cta { padding: 8px 14px; font-size: 13px; }
    .bg-orb, .bg-grid { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .bg-orb, .bg-grid { display: none; }
}

@media (max-width: 640px) {
    .hero { padding: 56px 0 72px; }
    .lead { font-size: 16.5px; margin-bottom: 28px; }
    .section { padding: 72px 0; }
    .bento { grid-template-columns: 1fr; }
    .bento-hero, .bento-wide { grid-column: auto; }
    .bento-hero .bento-big-num { font-size: 72px; }
    .check-form {
        padding: 6px;
        flex-wrap: wrap;
    }
    .check-form-icon { display: none; }
    .check-form input {
        flex: 1 1 100%;
        padding: 14px 14px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
    }
    .check-form button {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .metrics { grid-template-columns: 1fr; gap: 24px; }
    .product-card { flex-direction: column; }
    .product-image { width: 100%; height: 220px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .hero-meta { gap: 12px; }
    .cta-inner { padding: 56px 22px; }
    .preview-card { padding: 18px; }
    .preview-score-num { font-size: 52px; }
    .bento-big-num { font-size: 64px; }
    .reason { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
}

/* ─── Extension install prompt (shown when user pastes Ozon/ММ URL
       but extension not detected). Lives inside #results-wrapper. ─── */
.ext-prompt-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 32px;
    background: rgba(22, 26, 36, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    align-items: start;
}

.ext-prompt-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--bg);
    background: var(--accent);
    border-radius: var(--radius-lg);
    line-height: 1;
}

.ext-prompt-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

.ext-prompt-body p {
    margin: 0 0 18px;
    color: var(--text-dim);
    line-height: 1.55;
    font-size: 15px;
}

.ext-prompt-body .ext-prompt-hint {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 13px;
    color: var(--text-dim);
    opacity: 0.75;
}

.ext-prompt-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ext-prompt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border-2);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease, border-color .15s ease;
}

.ext-prompt-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hi);
    color: var(--text);
    transform: translateY(-1px);
}

.ext-prompt-btn-primary {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.ext-prompt-btn-primary:hover {
    background: var(--accent-hi);
    border-color: var(--accent-hi);
    color: var(--bg);
}

@media (max-width: 640px) {
    .ext-prompt-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
    }
    .ext-prompt-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        border-radius: var(--radius);
    }
    .ext-prompt-body h2 { font-size: 20px; }
    .ext-prompt-btn { flex: 1 1 100%; }
}

/* ─────────── Stats band (after hero) ─────────── */

.section-stats {
    padding: 56px 0 40px;
}
.section-stats + .section { border-top: none; }

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 201, 74, 0.04) 0%, rgba(255, 93, 143, 0.03) 100%),
        rgba(11, 13, 18, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
}
.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 201, 74, 0.08), transparent 55%),
                radial-gradient(circle at 80% 100%, rgba(255, 93, 143, 0.08), transparent 55%);
    pointer-events: none;
}
.stat-cell {
    position: relative;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid var(--border);
    z-index: 1;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:nth-child(1) .stat-num-big { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hi) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell:nth-child(2) .stat-num-big { background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-2-hi) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell:nth-child(3) .stat-num-big { background: linear-gradient(135deg, var(--accent-3) 0%, #b8f7db 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-cell:nth-child(4) .stat-num-big { background: linear-gradient(135deg, var(--accent-4) 0%, #b2bcff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

.stat-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.stat-num-big {
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    font-feature-settings: "ss01", "cv11", "tnum";
}
.stat-num-unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: -0.02em;
}
.stat-label {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.45;
}
.stat-label b {
    color: var(--text);
    font-weight: 600;
    display: inline-block;
    margin-top: 2px;
}

/* ─────────── Example section (feature-row with mock) ─────────── */

.section-example {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
}
.example-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}
.example-copy { position: relative; }
.example-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 224, 168, 0.08);
    border: 1px solid rgba(56, 224, 168, 0.32);
    color: var(--good);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}
.example-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--good);
    box-shadow: 0 0 10px var(--good);
}
.example-copy h3 {
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 14px;
}
.example-lead {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 28px;
}
.example-lead b { color: var(--text); font-weight: 700; }

.example-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.example-points li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
}
.example-points li b {
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 15.5px;
    margin-bottom: 3px;
    letter-spacing: -0.005em;
}
.example-points li span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}
.ep-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0;
    font-feature-settings: normal;
}
.ep-bad { background: rgba(255, 93, 143, 0.12); color: var(--accent-2); border: 1px solid rgba(255, 93, 143, 0.32); }
.ep-warn { background: rgba(255, 201, 74, 0.1); color: var(--accent); border: 1px solid rgba(255, 201, 74, 0.32); }
.ep-ok { background: rgba(124, 240, 192, 0.1); color: var(--accent-3); border: 1px solid rgba(124, 240, 192, 0.32); }

.example-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    color: var(--text);
    font-weight: 700;
    font-size: 14.5px;
    transition: all .18s ease;
}
.example-cta:hover {
    background: rgba(255, 201, 74, 0.08);
    border-color: var(--border-hi);
    color: var(--accent);
    transform: translateY(-1px);
}

.example-mock {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-2);
    background: linear-gradient(180deg, rgba(22, 26, 36, 0.85) 0%, rgba(11, 13, 18, 0.95) 100%);
    box-shadow: var(--shadow-soft), 0 40px 90px -40px rgba(139, 156, 255, 0.3);
    overflow: hidden;
}
.example-mock-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(11, 13, 18, 0.7);
}
.example-mock-dots {
    display: flex;
    gap: 6px;
}
.example-mock-dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.example-mock-dots i:nth-child(1) { background: rgba(255, 93, 143, 0.5); }
.example-mock-dots i:nth-child(2) { background: rgba(255, 201, 74, 0.5); }
.example-mock-dots i:nth-child(3) { background: rgba(124, 240, 192, 0.5); }
.example-mock-url {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.01em;
}
.example-mock-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.example-mock-product {
    display: flex;
    align-items: center;
    gap: 14px;
}
.example-mock-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 156, 255, 0.18), rgba(124, 240, 192, 0.12));
    border: 1px solid var(--border-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-4);
    flex-shrink: 0;
}
.example-mock-brand {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
}
.example-mock-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-top: 2px;
}
.example-mock-meta {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px;
    display: flex;
    gap: 8px;
}
.example-mock-verdict {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 201, 74, 0.06);
    border: 1px solid rgba(255, 201, 74, 0.3);
    flex-wrap: wrap;
}
.example-mock-badge {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.example-mock-badge.warn {
    background: var(--accent);
    color: #1a0f00;
}
.example-mock-verdict-text {
    font-size: 13.5px;
    color: var(--text-dim);
    font-weight: 500;
}

.example-mock-score {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 93, 143, 0.05);
    border: 1px solid rgba(255, 93, 143, 0.2);
}
.example-mock-score-num {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--accent-2);
    font-feature-settings: "tnum";
}
.example-mock-score-num b {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-2-hi);
    margin-left: 2px;
}
.example-mock-score-label {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.35;
}
.example-mock-score-spark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 46px;
    width: 76px;
}
.example-mock-score-spark span {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-2) 0%, rgba(255, 93, 143, 0.25) 100%);
    border-radius: 3px 3px 1px 1px;
    min-height: 6px;
}

.example-mock-flags {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.example-mock-flag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--text-dim);
}
.example-mock-flag b {
    color: var(--accent);
    font-weight: 800;
    font-size: 15px;
    font-feature-settings: "tnum";
}

.example-mock-glow {
    position: absolute;
    inset: auto -30% -40% auto;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(139, 156, 255, 0.22), transparent 65%);
    pointer-events: none;
    filter: blur(20px);
}

/* ─────────── Trust band (between why and faq) ─────────── */

.section-trust {
    content-visibility: auto;
    contain-intrinsic-size: 1px 520px;
}
.trust-band {
    padding: 48px 48px 52px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(124, 240, 192, 0.04) 0%, transparent 50%),
        rgba(11, 13, 18, 0.6);
    position: relative;
    overflow: hidden;
}
.trust-band::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(124, 240, 192, 0.12), transparent 65%);
    pointer-events: none;
}
.trust-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.trust-head .section-kicker {
    background: rgba(124, 240, 192, 0.08);
    border-color: rgba(124, 240, 192, 0.3);
    color: var(--accent-3);
    margin-bottom: 16px;
}
.trust-head h2 {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
}
.trust-lead {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.trust-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.trust-point {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 20px;
    border-radius: var(--radius);
    background: rgba(22, 26, 36, 0.55);
    border: 1px solid var(--border);
    transition: border-color .18s ease, transform .18s ease;
}
.trust-point:hover {
    border-color: var(--border-2);
    transform: translateY(-1px);
}
.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 240, 192, 0.16), rgba(139, 156, 255, 0.1));
    border: 1px solid rgba(124, 240, 192, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-3);
    flex-shrink: 0;
}
.trust-point b {
    display: block;
    color: var(--text);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    margin-bottom: 3px;
}
.trust-point span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments for new sections */

@media (max-width: 1060px) {
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
    .example-grid { grid-template-columns: 1fr; gap: 40px; }
    .trust-points { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .section-stats { padding: 40px 0 28px; }
    .trust-band { padding: 36px 28px 40px; }
}

@media (max-width: 640px) {
    .stats-band { grid-template-columns: 1fr; }
    .stat-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px 22px;
    }
    .stat-cell:last-child { border-bottom: none; }
    .stat-num-big { font-size: 40px; }
    .example-mock-score { grid-template-columns: auto 1fr; }
    .example-mock-score-spark { grid-column: span 2; width: 100%; }
    .example-mock-body { padding: 18px 16px 20px; }
    .trust-band { padding: 28px 20px 32px; }
    .trust-head h2 { font-size: 26px; }
    .trust-point { padding: 16px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   XRAY THEME — «Рентген-сканер маркетплейсов»
   Новый визуальный слой поверх существующих стилей. Ничего не ломает —
   только дополняет классами с префиксом .xray-*.
   Палитра: accent-3 (#7cf0c0) — свечение сканера, accent-2 (#ff5d8f) — фейк-улики,
   accent (#ffc94a) — предупреждения-улики.
   ══════════════════════════════════════════════════════════════════════════ */

/* ---------- базовые тех-примитивы (glow/caption/marker/noise) ---------- */

.xray-glow {
    box-shadow:
        0 0 0 1px rgba(124, 240, 192, 0.12),
        0 12px 36px -12px rgba(124, 240, 192, 0.35),
        inset 0 1px 0 rgba(124, 240, 192, 0.06);
    transition: box-shadow .25s ease;
}
.xray-glow:hover {
    box-shadow:
        0 0 0 1px rgba(124, 240, 192, 0.28),
        0 20px 60px -12px rgba(124, 240, 192, 0.55),
        inset 0 1px 0 rgba(124, 240, 192, 0.1);
}

.xray-caption {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-3);
    font-weight: 600;
    font-feature-settings: "tnum";
}

.xray-bg-noise,
.xray-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.49 0 0 0 0 0.94 0 0 0 0 0.75 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* moving scan line for any container marked .xray-scan */
.xray-scan { position: relative; overflow: hidden; isolation: isolate; }
.xray-scan::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 120px;
    background: linear-gradient(180deg,
        rgba(124, 240, 192, 0) 0%,
        rgba(124, 240, 192, 0.35) 45%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(124, 240, 192, 0.35) 55%,
        rgba(124, 240, 192, 0) 100%);
    filter: blur(1px);
    pointer-events: none;
    z-index: 0;
    animation: xray-scan-sweep 6s cubic-bezier(.45, .05, .55, .95) infinite;
}
@keyframes xray-scan-sweep {
    0%   { transform: translateY(-120%); opacity: 0.15; }
    10%  { opacity: 0.8; }
    50%  { opacity: 1; }
    90%  { opacity: 0.8; }
    100% { transform: translateY(680%); opacity: 0.15; }
}

/* ---------- hero badge, переделанный под приборную панель ---------- */

.hero-badge.xray-badge {
    background: rgba(11, 13, 18, 0.9);
    border: 1px solid rgba(124, 240, 192, 0.3);
    color: var(--text-dim);
    padding: 7px 14px 7px 10px;
    letter-spacing: 0.04em;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 12px;
    box-shadow:
        0 0 0 1px rgba(124, 240, 192, 0.08),
        inset 0 0 40px -10px rgba(124, 240, 192, 0.12);
}
.xray-badge-icon {
    display: inline-flex;
    color: var(--accent-3);
    animation: xray-icon-spin 8s linear infinite;
}
@keyframes xray-icon-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------- H1 просечка в тему (цифры/акцент тоньше) ---------- */

h1 .accent { /* существующее правило трогать не будем — просто letter-spacing для hero H1 */ }
.hero-copy h1 { font-feature-settings: "ss01", "cv11", "tnum"; }

/* ---------- XRAY SCENE (главный hero-визуал) ---------- */

.xray-scene {
    max-width: 460px;
    position: relative;
    margin-left: auto;
}

.xray-screen {
    position: relative;
    padding: 2px;
    border-radius: 22px;
    background: linear-gradient(135deg,
        rgba(124, 240, 192, 0.35) 0%,
        rgba(124, 240, 192, 0.05) 45%,
        rgba(139, 156, 255, 0.18) 100%);
    box-shadow:
        0 40px 90px -30px rgba(124, 240, 192, 0.35),
        0 20px 60px -30px rgba(0, 0, 0, 0.8);
}

.xray-screen-bezel {
    position: relative;
    border-radius: 20px;
    background:
        radial-gradient(ellipse at top, rgba(124, 240, 192, 0.06) 0%, transparent 60%),
        #070a0e;
    padding: 14px 14px 12px;
    overflow: hidden;
    isolation: isolate;
}
.xray-screen-bezel::before {
    /* мягкий «экран-рентгена» фон */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(124, 240, 192, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(124, 240, 192, 0.02) 0%, rgba(11, 13, 18, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.xray-caption-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px 10px;
}
.xray-caption-left { color: var(--accent-3); }
.xray-caption-right { color: var(--muted); font-size: 10px; letter-spacing: 0.18em; }

.xray-rec {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 10px rgba(255, 93, 143, 0.8);
    animation: xray-rec-pulse 1.2s ease-in-out infinite;
}
@keyframes xray-rec-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.7); }
}

/* stage — сцена с SVG и скан-линией */
.xray-stage {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(124, 240, 192, 0.08) 0%, transparent 55%),
        #050709;
    border: 1px solid rgba(124, 240, 192, 0.16);
    box-shadow:
        inset 0 0 60px rgba(0, 0, 0, 0.6),
        inset 0 0 1px rgba(124, 240, 192, 0.3);
    aspect-ratio: 440 / 520;
    isolation: isolate;
}

.xray-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* slight flicker на всей сцене */
.xray-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(124, 240, 192, 0.03) 100%);
    pointer-events: none;
    z-index: 2;
    animation: xray-flicker 4s ease-in-out infinite;
}
@keyframes xray-flicker {
    0%, 100% { opacity: 0.7; }
    45%      { opacity: 1; }
    55%      { opacity: 0.55; }
}

/* ---------- SVG internals: top layer, skeleton, scan, markers ---------- */

.xray-layer-top { opacity: 1; }

/* каждый отзыв-блок: базовый стиль */
.xray-block rect {
    transition: fill .25s ease, opacity .35s ease;
}
.xray-block.xray-fake rect {
    fill: rgba(255, 93, 143, 0.14);
    stroke: rgba(255, 93, 143, 0.45);
    stroke-width: 0.8;
    stroke-dasharray: 2 2;
}
.xray-block.xray-real rect {
    fill: rgba(124, 240, 192, 0.18);
    stroke: rgba(124, 240, 192, 0.45);
    stroke-width: 0.8;
}

/* пульс «обнаружения» при вспышке — добавляется JS-ом через класс .xray-hit */
.xray-block.xray-hit rect {
    animation: xray-block-flash 700ms cubic-bezier(.2, .8, .2, 1);
}
@keyframes xray-block-flash {
    0%   { filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0)); }
    40%  { filter: brightness(2.4) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)); }
    100% { filter: brightness(1) drop-shadow(0 0 0 rgba(255,255,255,0)); }
}

/* markers стартуют невидимыми, проявляются каскадом */
.xray-markers text,
.xray-markers path,
.xray-markers circle {
    opacity: 0;
    animation: xray-marker-in 900ms cubic-bezier(.2,.8,.2,1) forwards;
}
.xray-markers > *:nth-child(1) { animation-delay: 1.0s; }
.xray-markers > *:nth-child(2) { animation-delay: 1.1s; }
.xray-markers > *:nth-child(3) { animation-delay: 1.2s; }
.xray-markers > *:nth-child(4) { animation-delay: 2.0s; }
.xray-markers > *:nth-child(5) { animation-delay: 2.1s; }
.xray-markers > *:nth-child(6) { animation-delay: 2.2s; }
.xray-markers > *:nth-child(7) { animation-delay: 3.0s; }
.xray-markers > *:nth-child(8) { animation-delay: 3.1s; }
.xray-markers > *:nth-child(9) { animation-delay: 3.2s; }
.xray-markers > *:nth-child(10){ animation-delay: 4.0s; }
.xray-markers > *:nth-child(11){ animation-delay: 4.1s; }
.xray-markers > *:nth-child(12){ animation-delay: 4.2s; }
@keyframes xray-marker-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* диагноз — проявляется последним */
.xray-diagnosis {
    opacity: 0;
    animation: xray-diag-in 900ms cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 5s;
}
@keyframes xray-diag-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* SCAN LINE — бегущая полоса поверх всей сцены */
.xray-scan-line {
    transform: translateY(-10%);
    transform-origin: top;
    animation: xray-scan-y 6s cubic-bezier(.45, .05, .55, .95) infinite;
    mix-blend-mode: screen;
}
@keyframes xray-scan-y {
    0%   { transform: translateY(-20px); opacity: 0.2; }
    8%   { opacity: 0.95; }
    50%  { opacity: 1; }
    92%  { opacity: 0.9; }
    100% { transform: translateY(520px); opacity: 0.2; }
}

/* READOUT — мелкие приборные показатели под сценой */
.xray-readout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 10px;
    border: 1px solid rgba(124, 240, 192, 0.18);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(124, 240, 192, 0.05);
}
.xray-readout-cell {
    padding: 7px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    background: rgba(7, 10, 14, 0.85);
}
.xray-readout-label {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.xray-readout-val {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    font-feature-settings: "tnum";
    letter-spacing: -0.01em;
}

/* ---------- Stamps (УЛИКА, НАКРУТКА, ФЕЙК) ---------- */

.xray-stamp {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 2px dashed currentColor;
    border-radius: 6px;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    font-weight: 800;
    text-transform: uppercase;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    opacity: 0.88;
    text-shadow: 0 0 8px currentColor;
}
.xray-stamp-evidence {
    color: var(--accent);
    top: -14px;
    right: -10px;
    transform: rotate(8deg);
}
.xray-stamp-rules {
    color: var(--accent-2);
    top: 12px;
    right: 14px;
    transform: rotate(-6deg);
    font-size: 9px;
    padding: 4px 8px;
    letter-spacing: 0.2em;
}
.xray-stamp-fake {
    color: var(--accent-2);
    right: 14px;
    top: -10px;
    transform: rotate(-10deg);
    font-size: 9px;
    padding: 4px 8px;
    letter-spacing: 0.2em;
}

/* ---------- Stats: мятный glow + моноспейс цифры ---------- */

.stats-band.xray-panel {
    position: relative;
    border-color: rgba(124, 240, 192, 0.16);
    box-shadow:
        0 30px 80px -40px rgba(124, 240, 192, 0.25),
        inset 0 0 0 1px rgba(124, 240, 192, 0.04);
}
.stats-band.xray-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            transparent 0,
            rgba(124, 240, 192, 0.12) 50%,
            transparent 100%);
    height: 1px;
    top: 0;
    pointer-events: none;
}

.stat-num-big.xray-num {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-feature-settings: "tnum", "zero";
    letter-spacing: -0.02em;
    /* keep gradient color from nth-child, add glow */
    filter: drop-shadow(0 0 14px rgba(124, 240, 192, 0.18));
}

.stat-cell { position: relative; }

/* ---------- Example mock — превращаем в рентген-сцену ---------- */

.example-mock.xray-panel {
    border-color: rgba(124, 240, 192, 0.18);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(124, 240, 192, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, rgba(7, 10, 14, 0.95) 0%, rgba(11, 13, 18, 0.98) 100%);
    box-shadow:
        var(--shadow-soft),
        0 40px 90px -40px rgba(124, 240, 192, 0.3);
}
.example-mock.xray-panel .example-mock-head {
    background: rgba(7, 10, 14, 0.9);
    border-bottom-color: rgba(124, 240, 192, 0.16);
}
.example-mock.xray-panel .example-mock-url {
    color: var(--accent-3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.xray-dot-rec {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(255, 93, 143, 0.7);
    animation: xray-rec-pulse 1.2s ease-in-out infinite;
}

.example-mock.xray-panel .example-mock-body {
    position: relative;
    overflow: hidden;
}
.example-mock.xray-panel .example-mock-body::before {
    /* бегущая скан-линия по mock-у */
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 80px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(124, 240, 192, 0.18) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(124, 240, 192, 0.18) 55%,
        transparent 100%);
    filter: blur(1px);
    pointer-events: none;
    animation: xray-scan-y-mock 7s cubic-bezier(.45, .05, .55, .95) infinite;
    mix-blend-mode: screen;
    z-index: 0;
}
@keyframes xray-scan-y-mock {
    0%   { transform: translateY(-80px); opacity: 0.2; }
    10%  { opacity: 0.9; }
    90%  { opacity: 0.9; }
    100% { transform: translateY(520px); opacity: 0.2; }
}
.example-mock.xray-panel .example-mock-product,
.example-mock.xray-panel .example-mock-verdict,
.example-mock.xray-panel .example-mock-score,
.example-mock.xray-panel .example-mock-flags {
    position: relative;
    z-index: 1;
}
.example-mock.xray-panel .example-mock-verdict {
    position: relative;
}

/* ---------- Trust icons в рентген-стиле ---------- */

.trust-icon.xray-icon {
    color: var(--accent-3);
    background: rgba(124, 240, 192, 0.08);
    border: 1px solid rgba(124, 240, 192, 0.25);
    box-shadow:
        0 0 0 1px rgba(124, 240, 192, 0.04),
        0 8px 22px -8px rgba(124, 240, 192, 0.25);
}

/* ---------- Responsive — деградируем красиво ---------- */

@media (max-width: 1060px) {
    .xray-scene { max-width: 480px; }
    .xray-stamp-evidence { top: -8px; right: 0; }
}

@media (max-width: 900px) {
    .xray-scene { max-width: 420px; }
    .xray-stamp-evidence { font-size: 10px; padding: 4px 10px; }
}

@media (max-width: 640px) {
    /* упрощаем — оставляем сцену, но прячем лишние корни */
    .xray-stamp-evidence { display: none; }
    .xray-readout-label { font-size: 8px; letter-spacing: 0.15em; }
    .xray-readout-val { font-size: 11px; }
    .xray-caption { font-size: 9px; letter-spacing: 0.18em; }
    .xray-screen-bezel { padding: 10px 10px 8px; }
}

@media (max-width: 440px) {
    /* на совсем узких — отключаем scan-line и flicker ради FPS */
    .xray-stage::after { animation: none; }
    .example-mock.xray-panel .example-mock-body::before { display: none; }
}

/* ---------- XRAY v2 — фразы-улики, CT/MRI-курсор, лента правил, glow-readout ---------- */

/* Phrase overlay внутри fake-блоков: появляется только при .xray-hit.
   Используем visibility вместо opacity — opacity на SVG <text> внутри
   многоуровневых <g> в Chromium иногда залипает в 0. */
.xray-block > .xray-phrase {
    visibility: hidden;
    font-family: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 7.2px;
    font-weight: 700;
    fill: #ffe5ed;
    letter-spacing: 0.01em;
    pointer-events: none;
    paint-order: stroke fill;
    stroke: rgba(7, 8, 11, 0.85);
    stroke-width: 2.4px;
    stroke-linejoin: round;
}
.xray-block.xray-hit > .xray-phrase {
    visibility: visible;
}

/* Vertical cursor: бегает слева направо с фазой 4s — даёт CT/MRI ощущение */
.xray-cursor-v {
    transform: translateX(0);
    animation: xray-cursor-v-sweep 4s cubic-bezier(.45, .05, .55, .95) infinite;
    mix-blend-mode: screen;
    opacity: 0.55;
}
@keyframes xray-cursor-v-sweep {
    0%   { transform: translateX(0); opacity: 0.15; }
    8%   { opacity: 0.7; }
    50%  { opacity: 0.9; }
    92%  { opacity: 0.7; }
    100% { transform: translateX(440px); opacity: 0.15; }
}

/* Crosshair: JS выставляет transform="translate(cx cy)" напрямую через SVG-атрибут —
   в Chromium CSS-переменные в transform на SVG <g> не пересчитываются стабильно. */
.xray-crosshair {
    opacity: 0;
    transition: opacity .24s ease;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 3px rgba(255, 201, 74, 0.85));
}
.xray-crosshair.xray-crosshair-on { opacity: 0.95; }

/* Caption meta справа на шапке — моноспейс, мятный, мелкий */
.xray-caption-meta {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    color: var(--accent-3);
    opacity: 0.75;
    font-feature-settings: "tnum";
    white-space: nowrap;
    margin-left: auto;
    padding-right: 12px;
}
.xray-caption-meta #xray-delta {
    display: inline-block;
    min-width: 22px;
    text-align: right;
    font-feature-settings: "tnum";
}

/* Rule ticker — узкая моноспейс-лента под сценой */
.xray-rule-ticker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 5px 10px;
    border: 1px solid rgba(124, 240, 192, 0.14);
    border-radius: 8px;
    background: rgba(7, 10, 14, 0.6);
    overflow: hidden;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.xray-rule-ticker-label {
    color: var(--accent-3);
    font-weight: 700;
    letter-spacing: 0.2em;
    flex-shrink: 0;
}
.xray-rule-ticker-track {
    display: inline-flex;
    gap: 10px;
    overflow: hidden;
    flex: 1;
    color: rgba(175, 185, 200, 0.45);
}
.xray-rule-ticker-rule {
    transition: color .2s ease, text-shadow .2s ease;
    position: relative;
}
.xray-rule-ticker-rule.xray-rule-active {
    color: var(--accent);
    text-shadow: 0 0 6px rgba(255, 201, 74, 0.7);
}
.xray-rule-ticker-rule.xray-rule-active::before {
    content: "⏵ ";
    color: var(--accent);
    margin-right: 2px;
}

/* Readout glow — короткая вспышка одной ячейки */
.xray-readout-cell.xray-readout-glow {
    animation: xray-readout-glow-anim 320ms cubic-bezier(.2,.8,.2,1);
}
@keyframes xray-readout-glow-anim {
    0%   { background: rgba(7, 10, 14, 0.85); box-shadow: inset 0 0 0 rgba(124, 240, 192, 0); }
    45%  { background: rgba(124, 240, 192, 0.18); box-shadow: inset 0 0 12px rgba(124, 240, 192, 0.35); }
    100% { background: rgba(7, 10, 14, 0.85); box-shadow: inset 0 0 0 rgba(124, 240, 192, 0); }
}

/* Responsive: упрощаем */
@media (max-width: 900px) {
    .xray-rule-ticker { font-size: 8px; gap: 6px; padding: 4px 8px; }
    .xray-caption-meta { display: none; }
    .xray-block > .xray-phrase { font-size: 6.5px; }
}
@media (max-width: 640px) {
    .xray-rule-ticker { display: none; }
    .xray-block > .xray-phrase { display: none; }
    .xray-cursor-v,
    .xray-crosshair { display: none; }
}

/* reduced-motion: стоп все анимации рентгена */
@media (prefers-reduced-motion: reduce) {
    .xray-badge-icon,
    .xray-rec,
    .xray-dot-rec { animation: none !important; }
    .xray-scan-line { animation: none !important; opacity: 0 !important; }
    .xray-stage::after { animation: none !important; }
    .example-mock.xray-panel .example-mock-body::before { display: none !important; }
    .xray-markers text,
    .xray-markers path,
    .xray-markers circle { opacity: 1 !important; animation: none !important; }
    .xray-diagnosis { opacity: 1 !important; animation: none !important; transform: none !important; }
    .xray-block { animation: none !important; }
    .xray-scan::before { animation: none !important; display: none !important; }
    .xray-cursor-v { animation: none !important; opacity: 0 !important; }
    .xray-crosshair { opacity: 0 !important; transition: none !important; transform: none !important; }
    .xray-block > .xray-phrase { visibility: hidden !important; }
    .xray-rule-ticker-rule { color: rgba(175, 185, 200, 0.6) !important; }
    .xray-rule-ticker-rule.xray-rule-active { text-shadow: none !important; }
    .xray-readout-cell.xray-readout-glow { animation: none !important; }
}
