/* ─────────────── REPORT — Pulse-aligned overrides ───────────────
   Re-skins the existing rv2-* markup with Pulse design tokens.
   No HTML / JS changes — same IDs, classes, structure.            */

/* ── Design tokens ── */
.rv2-report {
    --rp-bg:           #fafaf7;
    --rp-bg-alt:       #ffffff;
    --rp-text:         #0a0a0a;
    --rp-text-soft:    #4b5563;
    --rp-text-muted:   #9ca3af;
    --rp-text-tertiary:#6b7280;
    --rp-border:       rgba(10, 10, 10, 0.08);
    --rp-border-strong:rgba(10, 10, 10, 0.14);
    --rp-divider:      rgba(10, 10, 10, 0.06);
    --rp-card:         #ffffff;
    --rp-card-soft:    #fafaf7;
    --rp-surface:      #f7f6f1;
    --rp-card-shadow:  0 1px 2px rgba(10,10,10,0.04), 0 24px 48px -16px rgba(10,10,10,0.10);
    --rp-card-shadow-pop: 0 1px 2px rgba(10,10,10,0.04), 0 30px 60px -20px rgba(10,10,10,0.18);
    --rp-accent:       #0f6e56;
    --rp-accent-strong:#0a4a3a;
    --rp-accent-soft:  rgba(15, 110, 86, 0.10);
    --rp-accent-border:rgba(15, 110, 86, 0.18);
    --rp-warn:         #b45309;
    --rp-warn-soft:    rgba(180, 83, 9, 0.10);
    --rp-warn-border:  rgba(180, 83, 9, 0.22);
    --rp-danger:       #b91c1c;
    --rp-danger-soft:  rgba(185, 28, 28, 0.08);
    --rp-danger-border:rgba(185, 28, 28, 0.20);

    background: var(--rp-bg);
    color: var(--rp-text);
    font-family: inherit;
}

@keyframes rp-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.18); }
    50%      { box-shadow: 0 0 0 6px rgba(15, 110, 86, 0.06); }
}

/* ── Containers / spacing ── */
.rv2-report .rv2-container       { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.rv2-report .rv2-container-wide  { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 880px) {
    .rv2-report .rv2-container,
    .rv2-report .rv2-container-wide { padding: 0 20px; }
}
.rv2-report .rv2-section { padding: 100px 0; }
@media (max-width: 880px) { .rv2-report .rv2-section { padding: 64px 0; } }

.rv2-report .rv2-divider {
    height: 1px;
    background: var(--rp-divider);
    margin: 0 auto;
    max-width: 1176px;
}

/* ── Typography ── */
.rv2-report .rv2-h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.022em;
    color: var(--rp-text);
    margin: 0 0 16px;
}
.rv2-report .rv2-h2 em,
.rv2-report .rv2-h2 .em { font-style: italic; color: var(--rp-text-soft); font-weight: 500; }
.rv2-report .rv2-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--rp-text-soft);
    margin: 0 0 48px;
    font-weight: 400;
    max-width: 720px;
}
.rv2-report .rv2-sub-heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rp-text-muted);
    margin-bottom: 20px;
    display: inline-flex; align-items: center; gap: 8px;
}
.rv2-report .rv2-sub-heading::before {
    content: ''; width: 24px; height: 1px;
    background: var(--rp-text-muted);
}

/* ───────────────────────── STICKY BAR ───────────────────────── */
.rv2-report .rv2-sticky-bar {
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--rp-border);
    box-shadow: 0 1px 12px rgba(10,10,10,0.04);
    height: 60px;
}
.rv2-report .rv2-sticky-domain {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--rp-text);
    letter-spacing: -0.01em;
}
.rv2-report .rv2-sticky-score-text {
    font-size: 0.75rem;
    color: var(--rp-text-muted);
    font-weight: 600;
}
.rv2-report .rv2-sticky-score-text span { color: var(--rp-text); font-weight: 700; }
.rv2-report .rv2-sticky-visibility { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.rv2-report .rv2-sticky-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    background: var(--rp-text);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0;
    border: 0;
    box-shadow: 0 6px 16px -8px rgba(10, 10, 10, 0.40);
}
.rv2-report .rv2-sticky-cta:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 22px -10px rgba(10, 10, 10, 0.55);
    transform: translateY(-1px);
}

/* ───────────────────────── HERO ───────────────────────── */
.rv2-report .rv2-hero {
    background: var(--rp-bg);
    padding: 120px 0 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rv2-report .rv2-hero::before { display: none; }
@media (max-width: 880px) { .rv2-report .rv2-hero { padding: 80px 0 64px; } }

.rv2-report .rv2-hero-timestamp {
    font-size: 0.6875rem;
    color: var(--rp-text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.rv2-report .rv2-share-copy {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--rp-border-strong);
    background: var(--rp-card);
    color: var(--rp-text-soft);
    cursor: pointer;
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.rv2-report .rv2-share-copy:hover {
    border-color: var(--rp-accent);
    color: var(--rp-accent);
    background: var(--rp-accent-soft);
}
.rv2-report .rv2-share-copy.rv2-share-copy--copied {
    border-color: var(--rp-accent);
    color: var(--rp-accent);
    background: var(--rp-accent-soft);
}

.rv2-report .rv2-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 5.4vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--rp-text);
    margin: 0 0 56px;
}
.rv2-report .rv2-hero h1 .rv2-domain {
    font-style: italic;
    color: var(--rp-accent);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    font-weight: 500;
}

.rv2-report .rv2-hero-score-block {
    display: flex; align-items: center; justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.rv2-report .rv2-gauge-wrapper {
    position: relative;
    width: 220px; height: 220px;
    flex-shrink: 0;
}
.rv2-report .rv2-gauge-svg { width: 220px; height: 220px; transform: rotate(-90deg); }
.rv2-report .rv2-gauge-bg {
    fill: none;
    stroke: rgba(10,10,10,0.08);
    stroke-width: 10;
}
.rv2-report .rv2-gauge-fill {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none !important;
}
.rv2-report .rv2-gauge-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--rp-text);
    line-height: 1;
    letter-spacing: -0.04em;
}
.rv2-report .rv2-gauge-label {
    font-size: 0.6875rem;
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.rv2-report .rv2-hero-verdict {
    max-width: 360px;
    text-align: left;
}
.rv2-report .rv2-hero-verdict p {
    font-size: 1.0625rem;
    color: var(--rp-text-soft);
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

.rv2-report .rv2-cta-primary,
.rv2-report .rv2-mid-cta .rv2-cta-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    background: var(--rp-text);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0;
    border: 0;
    text-decoration: none;
    transition: transform .12s ease, background .2s ease;
    box-shadow: 0 8px 22px -10px rgba(10, 10, 10, 0.45);
    font-family: inherit;
}
.rv2-report .rv2-cta-primary:hover,
.rv2-report .rv2-mid-cta .rv2-cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px -12px rgba(10, 10, 10, 0.55);
}
.rv2-report .rv2-cta-sub {
    font-size: 0.875rem;
    color: var(--rp-text-tertiary);
    margin-top: 14px;
    font-weight: 500;
}

/* ───────────────────────── MODEL TABLE ───────────────────────── */
.rv2-report .rv2-model-section {
    background: var(--rp-bg-alt);
}
.rv2-report .rv2-model-table-wrap {
    background: var(--rp-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--rp-border);
    box-shadow: var(--rp-card-shadow);
    margin-bottom: 40px;
}
.rv2-report .rv2-model-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.rv2-report .rv2-model-table thead th {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--rp-text-muted);
    padding: 16px 22px;
    background: var(--rp-card-soft);
    border-bottom: 1px solid var(--rp-border);
    text-align: left;
}
.rv2-report .rv2-model-table thead th:first-child { padding-left: 26px; }
.rv2-report .rv2-model-table tbody tr { transition: background .2s ease; }
.rv2-report .rv2-model-table tbody tr:hover { background: var(--rp-card-soft); }
.rv2-report .rv2-model-table tbody td {
    padding: 18px 22px;
    border-bottom: 1px solid var(--rp-border);
    font-size: 0.9375rem;
    vertical-align: middle;
}
.rv2-report .rv2-model-table tbody td:first-child { padding-left: 26px; }
.rv2-report .rv2-model-table tbody tr:last-child td { border-bottom: 0; }

.rv2-report .rv2-model-name {
    display: flex; align-items: center; gap: 12px;
    font-weight: 600;
    color: var(--rp-text);
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.rv2-report .rv2-model-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: var(--rp-card-soft);
    border: 1px solid var(--rp-border);
}
.rv2-report .rv2-model-icon img { width: 20px; height: 20px; object-fit: contain; }

/* Badges — Pulse semantic palette */
.rv2-report .rv2-badge {
    display: inline-flex; align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0;
    border: 1px solid;
}
.rv2-report .rv2-badge--exceptional,
.rv2-report .rv2-badge--high {
    background: var(--rp-accent-soft);
    color: var(--rp-accent);
    border-color: var(--rp-accent-border);
}
.rv2-report .rv2-badge--medium {
    background: var(--rp-warn-soft);
    color: var(--rp-warn);
    border-color: var(--rp-warn-border);
}
.rv2-report .rv2-badge--low,
.rv2-report .rv2-badge--very_low {
    background: var(--rp-danger-soft);
    color: var(--rp-danger);
    border-color: var(--rp-danger-border);
}

/* ───────────────────────── CHAT MOCKUP ───────────────────────── */
.rv2-report .rv2-chat-mockup {
    max-width: 720px;
    margin: 48px auto 0;
    border-radius: 18px;
    background: #0a0a0a;
    overflow: hidden;
    box-shadow: 0 18px 48px -16px rgba(10,10,10,0.50);
    border: 1px solid rgba(255,255,255,0.06);
}
.rv2-report .rv2-chat-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rv2-report .rv2-chat-header-logo {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rv2-report .rv2-chat-header-logo img { width: 18px; height: 18px; object-fit: contain; }
.rv2-report .rv2-chat-header-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}
.rv2-report .rv2-chat-header-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.20);
    animation: rp-dot 1.8s ease-in-out infinite;
}
.rv2-report .rv2-chat-body {
    padding: 22px 22px 24px;
    display: flex; flex-direction: column;
    gap: 16px;
}
.rv2-report .rv2-chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0;
    max-width: 88%;
}
.rv2-report .rv2-chat-bubble--user {
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.94);
    border-bottom-right-radius: 4px;
}
.rv2-report .rv2-chat-bubble--ai {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 4px 0;
}
.rv2-report .rv2-chat-bubble--ai strong {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    padding: 1px 4px;
    border-radius: 3px;
}
.rv2-report .rv2-chat-bubble--ai .rv2-chat-domain {
    color: #ffffff;
    font-weight: 600;
    font-style: italic;
}

/* ───────────────────────── COMPETITOR PRESSURE BLOCK ───────────────────────── */
.rv2-report .rv2-competitor-block {
    max-width: 720px;
    margin: 36px auto 0;
    background: var(--rp-warn-soft);
    border: 1px solid var(--rp-warn-border);
    border-radius: 16px;
    padding: 28px 32px;
}
.rv2-report .rv2-competitor-block__header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.rv2-report .rv2-competitor-block__icon {
    font-size: 0;
    color: var(--rp-warn);
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(180, 83, 9, 0.18);
    display: inline-flex; align-items: center; justify-content: center;
}
.rv2-report .rv2-competitor-block__icon::before {
    content: '!';
    font-size: 0.875rem;
    font-weight: 800;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--rp-warn);
    line-height: 1;
}
.rv2-report .rv2-competitor-block__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--rp-text);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.rv2-report .rv2-competitor-block__tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
}
.rv2-report .rv2-competitor-tag {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--rp-card);
    border: 1px solid var(--rp-warn-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rp-text);
    box-shadow: 0 1px 3px rgba(10, 10, 10, 0.04);
}
.rv2-report .rv2-competitor-block__text {
    font-size: 0.9375rem;
    color: var(--rp-text-soft);
    line-height: 1.6;
    margin: 0;
}
.rv2-report .rv2-competitor-block__text {
    color: var(--rp-warn);
}

.rv2-report .rv2-model-insight {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    font-weight: 500;
    color: var(--rp-text);
    text-align: center;
    line-height: 1.3;
    padding: 36px 0 0;
    letter-spacing: -0.012em;
}
.rv2-report .rv2-model-insight .rv2-em-red {
    font-style: italic;
    color: var(--rp-danger);
    font-weight: 500;
}

/* ───────────────────────── BEFORE/AFTER ───────────────────────── */
.rv2-report .rv2-before-after { background: var(--rp-bg); }
.rv2-report .rv2-ba-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rv2-report .rv2-ba-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 12px 0;
    text-align: center;
    border-radius: 12px 12px 0 0;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}
.rv2-report .rv2-ba-label--before {
    background: var(--rp-warn-soft);
    color: var(--rp-warn);
    border: 1px solid var(--rp-warn-border);
    border-bottom: 0;
}
.rv2-report .rv2-ba-label--after {
    background: var(--rp-accent-soft);
    color: var(--rp-accent);
    border: 1px solid var(--rp-accent-border);
    border-bottom: 0;
}
.rv2-report .rv2-ba-column .rv2-chat-mockup {
    border-radius: 0 0 16px 16px;
    margin: 0;
    max-width: none;
}
.rv2-report .rv2-ba-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: var(--rp-accent);
    font-weight: 500;
    padding: 24px 0;
}

/* ───────────────────────── EMAIL GATE ───────────────────────── */
.rv2-report .rv2-email-gate-card {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    padding: 48px 52px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 24px 60px -16px rgba(10, 10, 10, 0.45);
    position: relative;
    overflow: hidden;
}
.rv2-report .rv2-email-gate-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 360px; height: 360px;
    background: radial-gradient(closest-side, rgba(52, 211, 153, 0.14), transparent 70%);
    pointer-events: none;
}
.rv2-report .rv2-email-gate-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.018em;
    line-height: 1.2;
    position: relative;
}
.rv2-report .rv2-email-gate-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.55;
    position: relative;
}
.rv2-report .rv2-email-gate-checklist {
    display: flex; flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 28px;
    padding: 0;
    position: relative;
}
.rv2-report .rv2-email-gate-check-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}
.rv2-report .rv2-email-gate-check-item span {
    color: #34d399;
    font-weight: 700;
    font-size: 1rem;
}
.rv2-report .rv2-email-gate-form {
    display: flex; gap: 8px;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 6px;
    transition: border-color .2s ease;
    position: relative;
}
.rv2-report .rv2-email-gate-form:focus-within {
    border-color: #34d399;
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
}
.rv2-report .rv2-email-gate-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #ffffff;
    outline: none;
}
.rv2-report .rv2-email-gate-input::placeholder { color: rgba(255, 255, 255, 0.40); }
.rv2-report .rv2-email-gate-btn {
    padding: 12px 22px;
    border-radius: 10px;
    background: #34d399;
    color: #042a20;
    font-weight: 700;
    font-size: 0.9375rem;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .12s ease, background .2s ease;
    box-shadow: 0 6px 18px -8px rgba(52, 211, 153, 0.55);
    font-family: inherit;
}
.rv2-report .rv2-email-gate-btn:hover {
    transform: translateY(-1px);
    background: #4ee0a7;
}
.rv2-report .rv2-email-gate-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 16px;
    position: relative;
}

/* ── Gated lock ── */
.rv2-report .rv2-gated--locked::after {
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(250, 250, 247, 0.6) 40%,
        rgba(250, 250, 247, 0.95) 80%,
        var(--rp-bg) 100%);
}

/* ───────────────────────── IDENTITY / ENTITY ROWS ───────────────────────── */
.rv2-report .rv2-identity-section { background: var(--rp-bg); }
.rv2-report .rv2-identity-rows {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 32px;
}
.rv2-report .rv2-identity-row {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 0.9375rem;
    border: 1px solid var(--rp-border);
    background: var(--rp-card);
    transition: border-color .2s ease, transform .2s ease;
}
.rv2-report .rv2-identity-row:hover {
    transform: none;
    border-color: var(--rp-border-strong);
}
.rv2-report .rv2-identity-row.rv2-green {
    background: var(--rp-accent-soft);
    border-color: var(--rp-accent-border);
    box-shadow: none;
}
.rv2-report .rv2-identity-row.rv2-yellow {
    background: var(--rp-warn-soft);
    border-color: var(--rp-warn-border);
    box-shadow: none;
}
.rv2-report .rv2-identity-row.rv2-red {
    background: var(--rp-danger-soft);
    border-color: var(--rp-danger-border);
    box-shadow: none;
}
.rv2-report .rv2-identity-icon { font-size: 1rem; flex-shrink: 0; }
.rv2-report .rv2-identity-label { font-weight: 700; color: var(--rp-text); letter-spacing: 0; }
.rv2-report .rv2-identity-desc { color: var(--rp-text-soft); }

.rv2-report .rv2-identity-summary {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}
.rv2-report .rv2-dot { width: 10px; height: 10px; border-radius: 50%; }
.rv2-report .rv2-dot.rv2-g { background: var(--rp-accent); }
.rv2-report .rv2-dot.rv2-y { background: var(--rp-warn); }
.rv2-report .rv2-dot.rv2-r { background: var(--rp-danger); }
.rv2-report .rv2-identity-summary-text {
    font-size: 0.9375rem;
    color: var(--rp-text-soft);
    font-weight: 500;
}

/* ───────────────────────── SCENARIO CARDS ───────────────────────── */
.rv2-report .rv2-scenario-cards {
    display: flex; flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
}
.rv2-report .rv2-scenario-card {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px 24px;
    border-radius: 14px;
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    transition: border-color .2s ease, box-shadow .2s ease;
    box-shadow: none;
}
.rv2-report .rv2-scenario-card:hover {
    box-shadow: var(--rp-card-shadow);
    transform: none;
    border-color: var(--rp-border-strong);
}
.rv2-report .rv2-scenario-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.rv2-report .rv2-scenario-content { flex: 1; }
.rv2-report .rv2-scenario-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--rp-text);
    margin-bottom: 4px;
    letter-spacing: 0;
}
.rv2-report .rv2-scenario-subtitle {
    font-size: 0.8125rem;
    color: var(--rp-text-muted);
    font-style: italic;
    margin-bottom: 8px;
}
.rv2-report .rv2-scenario-status { font-size: 0.875rem; font-weight: 700; }
.rv2-report .rv2-scenario-status.rv2-ok { color: var(--rp-accent); }
.rv2-report .rv2-scenario-status.rv2-warn { color: var(--rp-warn); }
.rv2-report .rv2-scenario-status.rv2-fail { color: var(--rp-danger); }

/* ───────────────────────── TECHNICAL READINESS ───────────────────────── */
.rv2-report .rv2-content-section { background: var(--rp-bg-alt); }
.rv2-report .rv2-tech-bars {
    display: flex; flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}
.rv2-report .rv2-tech-row {
    display: flex; align-items: center;
    gap: 18px;
}
.rv2-report .rv2-tech-label {
    width: 160px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rp-text);
    flex-shrink: 0;
    letter-spacing: 0;
}
.rv2-report .rv2-tech-bar-wrap {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.06);
    overflow: hidden;
}
.rv2-report .rv2-tech-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}
.rv2-report .rv2-tech-bar-fill.rv2-bar-green {
    background: linear-gradient(90deg, #34d399, var(--rp-accent));
}
.rv2-report .rv2-tech-bar-fill.rv2-bar-yellow {
    background: linear-gradient(90deg, #fbbf24, var(--rp-warn));
}
.rv2-report .rv2-tech-bar-fill.rv2-bar-red {
    background: linear-gradient(90deg, #f87171, var(--rp-danger));
}
.rv2-report .rv2-tech-status {
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    min-width: 100px;
    text-align: right;
}
.rv2-report .rv2-tech-status.rv2-pass { color: var(--rp-accent); }
.rv2-report .rv2-tech-status.rv2-status-warn { color: var(--rp-warn); }
.rv2-report .rv2-tech-status.rv2-status-fail { color: var(--rp-danger); }
.rv2-report .rv2-tech-summary {
    font-size: 0.9375rem;
    color: var(--rp-text-soft);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 400;
}

/* ───────────────────────── INSIGHT CARD ───────────────────────── */
.rv2-report .rv2-insight {
    background: var(--rp-card-soft);
    border: 1px solid var(--rp-border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-top: 24px;
}
.rv2-report .rv2-insight__title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--rp-text-muted);
    margin-bottom: 8px;
}
.rv2-report .rv2-insight__text {
    font-size: 0.9375rem;
    color: var(--rp-text-soft);
    line-height: 1.6;
}

/* ───────────────────────── TOP ISSUES ───────────────────────── */
.rv2-report .rv2-issues-section { background: var(--rp-bg); }
.rv2-report .rv2-issue-cards {
    display: flex; flex-direction: column;
    gap: 16px;
}
.rv2-report .rv2-issue-card {
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    border-left: 4px solid var(--rp-danger);
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.rv2-report .rv2-issue-card:hover {
    box-shadow: var(--rp-card-shadow);
    transform: none;
    border-left-color: var(--rp-danger);
}
.rv2-report .rv2-issue-num {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--rp-danger);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.rv2-report .rv2-issue-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--rp-text);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.015em;
}
.rv2-report .rv2-issue-desc {
    font-size: 0.9375rem;
    color: var(--rp-text-soft);
    line-height: 1.6;
    font-weight: 400;
}
.rv2-report .rv2-issue-details {
    display: flex; flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.rv2-report .rv2-issue-detail {
    display: flex;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.5;
}
.rv2-report .rv2-issue-detail-label {
    flex-shrink: 0;
    font-weight: 700;
    min-width: 72px;
}
.rv2-report .rv2-issue-detail-label--risk { color: var(--rp-warn); }
.rv2-report .rv2-issue-detail-label--loss { color: var(--rp-danger); }
.rv2-report .rv2-issue-detail-label--solution { color: var(--rp-accent); }
.rv2-report .rv2-issue-detail-text { color: var(--rp-text-soft); font-weight: 400; }

/* ───────────────────────── FINAL CTA ───────────────────────── */
.rv2-report .rv2-final-cta {
    background: var(--rp-bg);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.rv2-report .rv2-final-cta::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(15,110,86,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.rv2-report .rv2-final-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.022em;
    margin-bottom: 18px;
    color: var(--rp-text);
    position: relative;
    line-height: 1.1;
}
.rv2-report .rv2-final-subhead {
    font-size: 1.125rem;
    color: var(--rp-text);
    line-height: 1.55;
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
}
.rv2-report .rv2-final-subhead-light {
    font-size: 1rem;
    color: var(--rp-text-soft);
    margin-bottom: 44px;
    position: relative;
    font-weight: 400;
}
.rv2-report .rv2-metrics-card {
    display: inline-flex; align-items: center;
    gap: 56px;
    background: var(--rp-card);
    border: 1px solid var(--rp-border);
    border-radius: 18px;
    padding: 36px 56px;
    box-shadow: var(--rp-card-shadow);
    margin-bottom: 44px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    backdrop-filter: none;
}
.rv2-report .rv2-metric { text-align: center; }
.rv2-report .rv2-metric-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--rp-text-muted);
    margin-bottom: 12px;
}
.rv2-report .rv2-metric-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--rp-text);
}
.rv2-report .rv2-metric-value.rv2-red { color: var(--rp-danger); }

.rv2-report .rv2-cta-big {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    background: var(--rp-text);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.0625rem;
    letter-spacing: 0;
    border: 0;
    text-decoration: none;
    transition: transform .12s ease, background .2s ease;
    box-shadow: 0 10px 28px -10px rgba(10, 10, 10, 0.55);
    position: relative;
    font-family: inherit;
}
.rv2-report .rv2-cta-big:hover {
    transform: translateY(-1px);
    background: #1a1a1a;
    box-shadow: 0 16px 36px -12px rgba(10, 10, 10, 0.65);
}
.rv2-report .rv2-pricing-note {
    font-size: 0.875rem;
    color: var(--rp-text-tertiary);
    margin-top: 18px;
    position: relative;
    font-weight: 500;
}
.rv2-report .rv2-trust-signals {
    display: flex; align-items: center; justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
}
.rv2-report .rv2-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8125rem;
    color: var(--rp-text-soft);
    font-weight: 500;
}
.rv2-report .rv2-trust-check { color: var(--rp-accent); font-weight: 700; }

/* ───────────────────────── MID CTA ───────────────────────── */
.rv2-report .rv2-mid-cta {
    text-align: center;
    padding: 56px 0 0;
}

/* ───────────────────────── FADE ANIMATIONS ───────────────────────── */
@keyframes rv2FadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rv2-report .rv2-fade-up {
    opacity: 0;
    transform: translateY(28px);
}
.rv2-report .rv2-fade-up.rv2-visible {
    animation: rv2FadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.rv2-report .rv2-stagger-1 { animation-delay: 0.1s; }
.rv2-report .rv2-stagger-2 { animation-delay: 0.2s; }
.rv2-report .rv2-stagger-3 { animation-delay: 0.3s; }
.rv2-report .rv2-stagger-4 { animation-delay: 0.4s; }

/* ── Color helpers ── */
.rv2-report .rv2-color-red { color: var(--rp-danger); }
.rv2-report .rv2-color-amber { color: var(--rp-warn); }
.rv2-report .rv2-color-green { color: var(--rp-accent); }

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 880px) {
    .rv2-report .rv2-hero-score-block { flex-direction: column; gap: 32px; }
    .rv2-report .rv2-hero-verdict { text-align: center; max-width: 100%; }
    .rv2-report .rv2-metrics-card {
        flex-direction: column; gap: 28px;
        padding: 32px 36px;
    }
    .rv2-report .rv2-model-table { font-size: 0.8125rem; }
    .rv2-report .rv2-model-table thead th,
    .rv2-report .rv2-model-table tbody td { padding: 12px 14px; }
    .rv2-report .rv2-sticky-domain { font-size: 0.8125rem; }
    .rv2-report .rv2-sticky-bar__inner { padding: 0 16px; gap: 10px; }
    .rv2-report .rv2-sticky-visibility { display: none; }
    .rv2-report .rv2-sticky-cta { font-size: 0.75rem; padding: 8px 14px; }
    .rv2-report .rv2-trust-signals { flex-direction: column; gap: 12px; }
    .rv2-report .rv2-tech-label { width: 110px; font-size: 0.8125rem; }
    .rv2-report .rv2-email-gate-card { padding: 36px 28px; }
    .rv2-report .rv2-issue-card { padding: 22px 24px; }
}
@media (max-width: 720px) {
    .rv2-report .rv2-ba-columns { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .rv2-report .rv2-model-table {
        display: block; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .rv2-report .rv2-scenario-card { flex-direction: column; gap: 12px; }
    .rv2-report .rv2-email-gate-form { flex-direction: column; }
    .rv2-report .rv2-email-gate-card { padding: 28px 22px; }
}
