/* ===== REPORT V2 — RESET & BASE ===== */
.rv2-report { background: #fafaf9; }
.rv2-container { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.rv2-container-wide { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.rv2-section { padding: 80px 0; }
.rv2-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15,23,42,0.08), transparent);
  margin: 0 auto; max-width: 600px;
}

/* ===== TYPOGRAPHY ===== */
.rv2-h2 {
  font-size: clamp(30px, 4vw, 42px); font-weight: 900;
  line-height: 1.15; letter-spacing: -0.035em; color: #0f172a;
  margin-bottom: 14px; font-family: var(--font-main);
}
.rv2-subtitle { font-size: 17px; color: #475569; line-height: 1.6; margin-bottom: 44px; font-weight: 450; }
.rv2-sub-heading {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: #94a3b8; margin-bottom: 20px;
}

/* ===== STICKY BAR ===== */
.rv2-sticky-bar {
  position: fixed; top: -64px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(15,23,42,0.08);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 60px;
}
.rv2-sticky-bar.rv2-visible { top: 0; }
.rv2-sticky-bar__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  height: 100%;
}
.rv2-sticky-domain { font-weight: 800; font-size: 15px; color: #0f172a; letter-spacing: -0.02em; }
.rv2-sticky-score-wrap { display: flex; align-items: center; gap: 10px; }
.rv2-sticky-score-text { font-size: 13px; font-weight: 600; color: #64748b; }
.rv2-sticky-score-text span { font-weight: 800; }
.rv2-sticky-visibility { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.rv2-sticky-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; border-radius: 50px;
  background: linear-gradient(135deg, #C8E64A, #A8CC28);
  color: #1a1a1a; font-weight: 700; font-size: 13px; letter-spacing: -0.01em;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(168,204,40,0.2);
}
.rv2-sticky-cta:hover { box-shadow: 0 6px 20px rgba(168,204,40,0.4); transform: translateY(-1px); }
.rv2-sticky-mini-gauge {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.rv2-sticky-mini-gauge::after {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; position: absolute;
}

/* ===== HERO ===== */
.rv2-hero {
  text-align: center; padding: 96px 0 72px;
  background: linear-gradient(180deg, #fafaf9 0%, #f5f5f4 50%, #fafaf9 100%);
  position: relative; overflow: hidden;
}
.rv2-hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  pointer-events: none;
}
.rv2-hero-timestamp {
  font-size: 12px; color: #94a3b8; margin-bottom: 20px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.rv2-share-copy {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid #cbd5e1; background: #fff;
  color: #64748b; cursor: pointer;
  font-size: 11px; font-weight: 700; font-family: inherit;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.rv2-share-copy:hover {
  border-color: #94a3b8; color: #334155; background: #f8fafc;
}
.rv2-share-copy.rv2-share-copy--copied {
  border-color: #059669; color: #059669; background: #ecfdf5;
}
.rv2-hero h1 {
  font-size: clamp(34px, 5vw, 52px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 56px;
  font-family: var(--font-main);
}
.rv2-hero h1 .rv2-domain {
  color: #0f172a; font-weight: 900;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rv2-hero-score-block { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 56px; }
.rv2-gauge-wrapper { position: relative; width: 200px; height: 200px; flex-shrink: 0; }
.rv2-gauge-svg { width: 200px; height: 200px; transform: rotate(-90deg); }
.rv2-gauge-bg { fill: none; stroke: #e2e8f0; stroke-width: 12; }
.rv2-gauge-fill { fill: none; stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 502; stroke-dashoffset: 502;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.rv2-gauge-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center;
}
.rv2-gauge-number { font-size: 60px; font-weight: 900; color: #0f172a; line-height: 1; letter-spacing: -0.04em; }
.rv2-gauge-label {
  font-size: 11px; font-weight: 700; margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.rv2-hero-verdict { max-width: 320px; text-align: left; }
.rv2-hero-verdict p { font-size: 18px; color: #475569; line-height: 1.7; font-weight: 450; }
.rv2-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 44px; border-radius: 14px;
  background: linear-gradient(135deg, #C8E64A, #A8CC28);
  color: #1a1a1a; font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(168,204,40,0.3), 0 2px 6px rgba(15,23,42,0.08);
}
.rv2-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(168,204,40,0.45), 0 4px 12px rgba(15,23,42,0.1); }
.rv2-cta-sub { font-size: 13px; color: #94a3b8; margin-top: 14px; font-weight: 500; }

/* ===== MODEL TABLE ===== */
.rv2-model-section { background: #fff; }
.rv2-model-table-wrap {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15,23,42,0.06), 0 1px 4px rgba(15,23,42,0.04);
  margin-bottom: 36px;
}
.rv2-model-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.rv2-model-table thead th {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: #64748b; padding: 16px 20px;
  background: #f8fafc; border-bottom: 2px solid #e2e8f0; text-align: left;
}
.rv2-model-table thead th:first-child { padding-left: 24px; }
.rv2-model-table tbody tr { transition: all 0.2s; }
.rv2-model-table tbody tr:hover { background: #f8fafc; }
.rv2-model-table tbody td {
  padding: 16px 20px; border-bottom: 1px solid #f1f5f9;
  font-size: 15px; vertical-align: middle;
}
.rv2-model-table tbody td:first-child { padding-left: 24px; }
.rv2-model-table tbody tr:last-child td { border-bottom: none; }
.rv2-model-name { display: flex; align-items: center; gap: 12px; font-weight: 700; white-space: nowrap; letter-spacing: -0.01em; }
.rv2-model-icon {
  width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #f1f5f9; border: 1px solid #e2e8f0;
}
.rv2-model-icon img { width: 22px; height: 22px; object-fit: contain; }
.rv2-badge {
  display: inline-flex; align-items: center; padding: 6px 16px;
  border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap;
  letter-spacing: -0.01em;
}
.rv2-badge--exceptional { background: #ecfdf5; color: #059669; border: 1px solid rgba(5,150,105,0.12); }
.rv2-badge--high { background: #eff6ff; color: #2563eb; border: 1px solid rgba(37,99,235,0.12); }
.rv2-badge--medium { background: #fefce8; color: #ca8a04; border: 1px solid rgba(202,138,4,0.12); }
.rv2-badge--low { background: #fff7ed; color: #ea580c; border: 1px solid rgba(234,88,12,0.12); }
.rv2-badge--very_low { background: #fef2f2; color: #dc2626; border: 1px solid rgba(220,38,38,0.12); }
/* ===== CHATGPT MOCKUP ===== */
.rv2-chat-mockup {
  max-width: 640px; margin: 48px auto 0; border-radius: 16px;
  background: #212121; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.rv2-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rv2-chat-header-logo {
  width: 28px; height: 28px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rv2-chat-header-logo img { width: 18px; height: 18px; object-fit: contain; }
.rv2-chat-header-name {
  font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em;
}
.rv2-chat-header-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10a37f;
}
.rv2-chat-body { padding: 20px 20px; display: flex; flex-direction: column; gap: 16px; }

.rv2-chat-msg { display: flex; align-items: flex-start; }
.rv2-chat-msg--user { justify-content: flex-end; }
.rv2-chat-bubble {
  padding: 12px 16px; border-radius: 18px;
  font-size: 14px; line-height: 1.6; letter-spacing: -0.01em;
  max-width: 88%;
}
.rv2-chat-bubble--user {
  background: #303030; color: #ececf1; border-bottom-right-radius: 4px;
}
.rv2-chat-bubble--ai {
  background: transparent; color: #d1d5db; padding: 4px 0;
}
.rv2-chat-bubble--ai strong { color: #5bb8a9; font-weight: 700; }
.rv2-chat-bubble--ai .rv2-chat-domain { color: #ececf1; font-weight: 600; }

@media (max-width: 500px) {
  .rv2-chat-mockup { margin: 32px -8px 0; border-radius: 12px; }
  .rv2-chat-body { padding: 16px 14px; }
  .rv2-chat-bubble { font-size: 13px; max-width: 95%; }
}

/* ===== COMPETITOR PRESSURE BLOCK ===== */
.rv2-competitor-block {
  max-width: 640px; margin: 48px auto 0;
  background: #fef2f2; border: 1px solid rgba(220,38,38,0.15);
  border-radius: 16px; padding: 28px 32px;
}
.rv2-competitor-block__header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.rv2-competitor-block__icon {
  font-size: 20px; color: #dc2626; flex-shrink: 0;
}
.rv2-competitor-block__title {
  font-size: 17px; font-weight: 800; color: #991b1b; letter-spacing: -0.02em;
}
.rv2-competitor-block__tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.rv2-competitor-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 8px;
  background: #fff; border: 1px solid rgba(220,38,38,0.12);
  font-size: 13px; font-weight: 700; color: #0f172a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.rv2-competitor-block__text {
  font-size: 14px; color: #7f1d1d; line-height: 1.6; margin: 0;
}

.rv2-model-insight {
  font-size: 18px; font-weight: 700; color: #1e293b; text-align: center;
  line-height: 1.6; padding: 28px 0 0; letter-spacing: -0.02em;
}
.rv2-model-insight .rv2-em-red { color: #dc2626; font-weight: 800; }

/* ===== BEFORE/AFTER SECTION ===== */
.rv2-before-after { background: #fafaf9; }
.rv2-ba-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.rv2-ba-label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 10px 0; text-align: center;
  border-radius: 12px 12px 0 0; margin-bottom: -1px; position: relative; z-index: 1;
}
.rv2-ba-label--before { background: #fef2f2; color: #dc2626; }
.rv2-ba-label--after { background: #f0fdf4; color: #059669; }
.rv2-ba-column .rv2-chat-mockup { border-radius: 0 0 16px 16px; margin: 0; max-width: none; }
.rv2-ba-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #059669; font-weight: 900;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .rv2-ba-columns { grid-template-columns: 1fr; }
}

/* ===== EMAIL GATE ===== */
.rv2-email-gate-wrapper { position: relative; }
.rv2-email-gate-wrapper.rv2-unlocked .rv2-email-gate-sticky { display: none; }
.rv2-email-gate-sticky { text-align: center; padding: 48px 0 56px; position: sticky; top: 110px; z-index: 50; }
.rv2-email-gate-card {
  background: #0f172a; border: 1px solid rgba(255,255,255,0.08); border-radius: 24px;
  padding: 44px 48px; max-width: 580px; margin: 0 auto;
  box-shadow: 0 16px 48px rgba(15,23,42,0.25), 0 4px 16px rgba(15,23,42,0.15);
}
.rv2-email-gate-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.03em; line-height: 1.3; }
.rv2-email-gate-sub { font-size: 15px; color: #94a3b8; margin-bottom: 28px; font-weight: 450; line-height: 1.5; }
.rv2-email-gate-checklist { display: flex; flex-direction: column; gap: 8px; text-align: left; margin-bottom: 28px; padding: 0 8px; }
.rv2-email-gate-check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #cbd5e1; font-weight: 500; }
.rv2-email-gate-check-item span { color: #34d399; font-weight: 700; font-size: 15px; }
.rv2-email-gate-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.rv2-email-gate-input {
  flex: 1; padding: 14px 18px; border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08);
  font-size: 15px; font-family: inherit; color: #fff;
  outline: none; transition: border-color 0.2s;
}
.rv2-email-gate-input::placeholder { color: #64748b; }
.rv2-email-gate-input:focus { border-color: #A8CC28; }
.rv2-email-gate-btn {
  padding: 14px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #C8E64A, #A8CC28);
  color: #1a1a1a; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(168,204,40,0.25);
}
.rv2-email-gate-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,204,40,0.4); }
.rv2-email-gate-note { font-size: 12px; color: #475569; margin-top: 14px; }

/* ===== GATED CONTENT ===== */
.rv2-gated { position: relative; }
.rv2-gated--locked { max-height: 1100px; overflow: hidden; }
.rv2-gated--locked > * { filter: blur(6px); user-select: none; -webkit-user-select: none; pointer-events: none; }
.rv2-gated--locked::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 350px;
  background: linear-gradient(to bottom, transparent 0%, rgba(250,250,249,0.6) 40%, rgba(250,250,249,0.95) 80%, #fafaf9 100%);
  pointer-events: none; z-index: 10;
}
.rv2-gated--unlocked { max-height: none; overflow: visible; }
.rv2-gated--unlocked > * { filter: none; user-select: auto; pointer-events: auto; }
.rv2-gated--unlocked::after { display: none; }

/* ===== IDENTITY / ENTITY RECOGNITION ===== */
.rv2-identity-section { background: #fafaf9; }
.rv2-identity-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.rv2-identity-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px; font-size: 15px;
  border: 1px solid transparent; transition: all 0.2s;
}
.rv2-identity-row:hover { transform: translateX(4px); }
.rv2-identity-row.rv2-green { background: #f0fdf4; border-color: rgba(5,150,105,0.12); box-shadow: 0 1px 4px rgba(5,150,105,0.06); }
.rv2-identity-row.rv2-yellow { background: #fffbeb; border-color: rgba(202,138,4,0.12); box-shadow: 0 1px 4px rgba(202,138,4,0.06); }
.rv2-identity-row.rv2-red { background: #fef2f2; border-color: rgba(220,38,38,0.12); box-shadow: 0 1px 4px rgba(220,38,38,0.06); }
.rv2-identity-icon { font-size: 18px; flex-shrink: 0; }
.rv2-identity-label { font-weight: 700; letter-spacing: -0.01em; }
.rv2-identity-desc { color: #475569; }
.rv2-identity-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 52px; flex-wrap: wrap; }
.rv2-dot-row { display: flex; gap: 5px; }
.rv2-dot { width: 12px; height: 12px; border-radius: 50%; transition: transform 0.2s; }
.rv2-dot:hover { transform: scale(1.3); }
.rv2-dot.rv2-g { background: #059669; }
.rv2-dot.rv2-y { background: #ca8a04; }
.rv2-dot.rv2-r { background: #dc2626; }
.rv2-identity-summary-text { font-size: 15px; color: #64748b; font-weight: 500; }

/* ===== SCENARIO CARDS (RECOMMENDATION ELIGIBILITY) ===== */
.rv2-scenario-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 44px; }
.rv2-scenario-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px; border-radius: 16px;
  background: #fff; border: 1px solid #e2e8f0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15,23,42,0.05), 0 1px 2px rgba(15,23,42,0.04);
}
.rv2-scenario-card:hover { box-shadow: 0 12px 36px rgba(15,23,42,0.1); transform: translateY(-2px); border-color: #cbd5e1; }
.rv2-scenario-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.rv2-scenario-content { flex: 1; }
.rv2-scenario-title { font-weight: 700; font-size: 15px; margin-bottom: 4px; letter-spacing: -0.01em; }
.rv2-scenario-subtitle { font-size: 13px; color: #94a3b8; font-style: italic; margin-bottom: 6px; }
.rv2-scenario-status { font-size: 13px; font-weight: 700; }
.rv2-scenario-status.rv2-ok { color: #059669; }
.rv2-scenario-status.rv2-warn { color: #ea580c; }
.rv2-scenario-status.rv2-fail { color: #dc2626; }

/* ===== TECHNICAL READINESS BARS ===== */
.rv2-content-section { background: #fff; }
.rv2-tech-bars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.rv2-tech-row { display: flex; align-items: center; gap: 18px; }
.rv2-tech-label { width: 140px; font-size: 14px; font-weight: 600; color: #334155; flex-shrink: 0; letter-spacing: -0.01em; }
.rv2-tech-bar-wrap { flex: 1; height: 8px; border-radius: 8px; background: #e2e8f0; overflow: hidden; }
.rv2-tech-bar-fill { height: 100%; border-radius: 8px; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); width: 0; }
.rv2-tech-bar-fill.rv2-bar-green { background: linear-gradient(90deg, #34d399, #059669); }
.rv2-tech-bar-fill.rv2-bar-yellow { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.rv2-tech-bar-fill.rv2-bar-red { background: linear-gradient(90deg, #f87171, #dc2626); }
.rv2-tech-status { font-size: 13px; font-weight: 700; white-space: nowrap; min-width: 100px; text-align: right; letter-spacing: -0.01em; }
.rv2-tech-status.rv2-pass { color: #059669; }
.rv2-tech-status.rv2-status-warn { color: #ea580c; }
.rv2-tech-status.rv2-status-fail { color: #dc2626; }
.rv2-tech-summary { font-size: 15px; color: #475569; text-align: center; margin-bottom: 32px; font-weight: 500; }

/* ===== SYSTEM INSIGHT ===== */
.rv2-insight {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 20px 24px; margin-top: 24px;
}
.rv2-insight__title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 8px; }
.rv2-insight__text { font-size: 15px; color: #475569; line-height: 1.6; }

/* ===== TOP ISSUES ===== */
.rv2-issues-section { background: #fafaf9; }
.rv2-issue-cards { display: flex; flex-direction: column; gap: 16px; }
.rv2-issue-card {
  background: #fff; border-left: 4px solid #dc2626;
  border-radius: 16px; padding: 30px 30px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8ecf0; border-left: 4px solid #dc2626;
}
.rv2-issue-card:hover { box-shadow: 0 16px 44px rgba(15,23,42,0.1); transform: translateY(-3px); }
.rv2-issue-num { font-size: 11px; font-weight: 800; color: #dc2626; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.rv2-issue-title { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.02em; }
.rv2-issue-desc { font-size: 14px; color: #475569; line-height: 1.6; font-weight: 450; }
.rv2-issue-details { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.rv2-issue-detail { display: flex; gap: 8px; font-size: 14px; line-height: 1.5; }
.rv2-issue-detail-label {
  flex-shrink: 0; font-weight: 700; min-width: 68px;
}
.rv2-issue-detail-label--risk { color: #ea580c; }
.rv2-issue-detail-label--loss { color: #dc2626; }
.rv2-issue-detail-label--solution { color: #059669; }
.rv2-issue-detail-text { color: #475569; font-weight: 450; }

/* ===== FINAL CTA ===== */
.rv2-final-cta {
  background: linear-gradient(145deg, #F2FACD 0%, #FEFCE8 25%, #FFF7ED 55%, #FFEDD5 80%, #FEF3C7 100%);
  text-align: center; padding: 96px 0;
  position: relative; overflow: hidden;
}
.rv2-final-cta::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,204,40,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.rv2-final-headline { font-size: clamp(30px, 4.5vw, 46px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 18px; color: #0f172a; position: relative; font-family: var(--font-main); }
.rv2-final-subhead { font-size: 18px; color: #334155; line-height: 1.6; margin-bottom: 8px; font-weight: 600; position: relative; }
.rv2-final-subhead-light { font-size: 16px; color: #64748b; margin-bottom: 44px; position: relative; font-weight: 500; }
.rv2-metrics-card {
  display: inline-flex; align-items: center; gap: 44px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-radius: 24px; padding: 36px 52px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04), 0 0 0 1px rgba(255,255,255,0.7) inset;
  margin-bottom: 44px; flex-wrap: wrap; justify-content: center;
  position: relative;
}
.rv2-metric { text-align: center; }
.rv2-metric-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 10px; }
.rv2-metric-value { font-size: 42px; font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
.rv2-metric-value.rv2-red { color: #dc2626; }
.rv2-cta-big {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 22px 56px; border-radius: 16px;
  background: #0f172a; color: #fff;
  font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(15,23,42,0.22), 0 2px 8px rgba(15,23,42,0.1);
  position: relative;
}
.rv2-cta-big:hover { transform: translateY(-2px); box-shadow: 0 20px 52px rgba(15,23,42,0.3); background: #1e293b; }
.rv2-pricing-note { font-size: 14px; color: #64748b; margin-top: 18px; position: relative; font-weight: 500; }
.rv2-trust-signals { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 24px; position: relative; }
.rv2-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #475569; font-weight: 500; }
.rv2-trust-check { color: #059669; font-weight: 800; }

/* ===== MID CTA ===== */
.rv2-mid-cta { text-align: center; padding: 52px 0 0; }

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

/* ===== COLOR HELPERS ===== */
.rv2-color-red { color: #dc2626; }
.rv2-color-amber { color: #ea580c; }
.rv2-color-green { color: #059669; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .rv2-hero-score-block { flex-direction: column; gap: 28px; }
  .rv2-hero-verdict { text-align: center; max-width: 100%; }
  .rv2-metrics-card { flex-direction: column; gap: 28px; padding: 32px 36px; }
  .rv2-model-table { font-size: 13px; }
  .rv2-model-table thead th, .rv2-model-table tbody td { padding: 12px 10px; }
  .rv2-sticky-domain { font-size: 13px; }
  .rv2-sticky-bar__inner { padding: 0 16px; gap: 10px; }
  .rv2-sticky-visibility { display: none; }
  .rv2-sticky-cta { font-size: 11px; padding: 8px 14px; }
  .rv2-section { padding: 60px 0; }
  .rv2-trust-signals { flex-direction: column; gap: 10px; }
  .rv2-tech-label { width: 110px; font-size: 12px; }
}
@media (max-width: 500px) {
  .rv2-model-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .rv2-scenario-card { flex-direction: column; gap: 10px; }
  .rv2-email-gate-form { flex-direction: column; }
  .rv2-email-gate-card { padding: 28px 24px; }
}

