/**
 * EMW Snapshot Engine — Public Styles
 * Full-width results experience — CONVERSION OPTIMIZATION
 */

/* ============================================================
   ROOT CONTAINER
   ============================================================ */
.emw-snapshot-module {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.emw-snapshot-module * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   PRE-SCAN FORM — Premium Two-Column Product Card
   ============================================================ */
.emw-snapshot-form {
    padding: 40px 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.emw-snapshot-form-card {
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 28px;
    padding: 48px 56px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    max-width: 1280px;
    margin: 0 auto;
}

/* Left Column: Image */
.emw-snapshot-form-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.emw-snapshot-form-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.10));
}

/* Right Column: Content */
.emw-snapshot-form-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.emw-snapshot-form-heading {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.emw-snapshot-form-heading .emw-snapshot-gold {
    color: #C9A24A;
}

.emw-snapshot-form-trust-line {
    font-size: 17px;
    font-weight: 700;
    color: #C9A24A;
    letter-spacing: 0.02em;
    margin-top: 0px;
}

.emw-snapshot-form-value-prop {
    font-size: 18px;
    color: #2A2A2A;
    margin: 0 0 4px 0;
    line-height: 1.5;
    max-width: 520px;
}

/* Input Container */
.emw-snapshot-input-container {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid #d8d8d8;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    padding: 0 16px;
    width: 100%;
    min-height: 60px;
}

.emw-snapshot-input-container:focus-within {
    border-color: #C9A24A;
    box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.15);
}

.emw-snapshot-input-icon {
    color: #8a8a8a;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Active pre-scan input rule - appears once */
.emw-snapshot-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #1a1a1a;
    padding: 16px 0;
    outline: none;
    min-width: 0;
    font-family: inherit;
}

.emw-snapshot-input::placeholder {
    color: #8a8a8a;
}

/* Active pre-scan button rule - appears once */
.emw-snapshot-btn-scan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #B22234;
    color: #ffffff !important;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(178, 34, 52, 0.25);
    width: 100%;
    min-height: 60px;
    font-family: inherit;
    line-height: 1.2;
}

.emw-snapshot-btn-scan:hover {
    background: #8a1a26;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(178, 34, 52, 0.30);
}

.emw-snapshot-btn-scan:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(178, 34, 52, 0.20);
}

.emw-snapshot-btn-scan:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Ensure button text stays white in all states */
.emw-snapshot-btn-scan,
.emw-snapshot-btn-scan:link,
.emw-snapshot-btn-scan:visited,
.emw-snapshot-btn-scan:hover,
.emw-snapshot-btn-scan:focus,
.emw-snapshot-btn-scan:active,
.emw-snapshot-btn-scan:disabled {
    color: #ffffff !important;
}

.emw-snapshot-btn-scan svg {
    flex-shrink: 0;
    stroke: #ffffff;
}

/* Reassurance Row */
.emw-snapshot-form-reassurance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.emw-snapshot-reassurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2A2A2A;
}

.emw-snapshot-reassurance-item svg {
    flex-shrink: 0;
}

/* ============================================================
   RESCAN BAR — Compact after scan
   ============================================================ */
.emw-snapshot-rescan-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f7f8fa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    margin: 20px 0 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.emw-snapshot-rescan-domain {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Inter', monospace;
    letter-spacing: -0.02em;
    word-break: break-all;
}

.emw-snapshot-btn-rescan {
    background: transparent;
    border: 1.5px solid #b22234;
    color: #b22234;
    border-radius: 60px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.emw-snapshot-btn-rescan:hover {
    background: #b22234;
    color: #fff;
}

/* ============================================================
   LOADING — Full-width
   ============================================================ */
.emw-snapshot-loading-full {
    padding: 60px 0 40px;
    text-align: center;
}

.emw-snapshot-loading-full .emw-snapshot-progress-wrap {
    max-width: 500px;
    margin: 0 auto 16px;
    background: #f0f0f0;
    border-radius: 4px;
    height: 4px;
    overflow: hidden;
}

.emw-snapshot-loading-full .emw-snapshot-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a24a, #b22234);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.emw-snapshot-loading-full .emw-snapshot-status-text {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    min-height: 28px;
}

.emw-snapshot-loading-full .emw-snapshot-loading-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.emw-snapshot-loading-full .emw-snapshot-loading-dots span {
    width: 8px;
    height: 8px;
    background: #c9a24a;
    border-radius: 50%;
    animation: emw-snapshot-dot-bounce 1.4s infinite ease-in-out both;
}

.emw-snapshot-loading-full .emw-snapshot-loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.emw-snapshot-loading-full .emw-snapshot-loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.emw-snapshot-loading-full .emw-snapshot-loading-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes emw-snapshot-dot-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   RESULTS — Full-width experience
   ============================================================ */
.emw-snapshot-results-full {
    display: none;
    animation: emw-snapshot-fade-up 0.6s ease forwards;
}

@keyframes emw-snapshot-fade-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 1: SNAPSHOT OVERVIEW
   ============================================================ */
.emw-snapshot-overview {
    padding: 72px 0 80px;
}

.emw-snapshot-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b22234;
    margin-bottom: 8px;
}

.emw-snapshot-overview-headline {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.2;
}

.emw-snapshot-overview-domain {
    font-size: 32px;
    font-weight: 700;
    color: #c9a24a;
    margin: 0 0 16px;
    line-height: 1.2;
    font-family: 'Inter', monospace;
    letter-spacing: -0.02em;
    word-break: break-all;
}

.emw-snapshot-overview-text {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 640px;
    margin-bottom: 40px;
}

.emw-snapshot-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Radar */
.emw-snapshot-radar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emw-snapshot-radar-container {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
}

.emw-snapshot-radar {
    width: 100%;
    height: 100%;
    display: block;
}

.emw-snapshot-band-display {
    text-align: center;
    margin-top: 16px;
}

.emw-snapshot-band-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a6a6a;
    display: block;
}

.emw-snapshot-band-value {
    font-size: 28px;
    font-weight: 700;
    color: #c9a24a;
    display: block;
    line-height: 1.2;
    margin-top: 2px;
}

.emw-snapshot-band-clarification {
    font-size: 13px;
    color: #6a6a6a;
    max-width: 480px;
    margin: 8px auto 0;
    line-height: 1.5;
}

/* Overview Details */
.emw-snapshot-overview-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.emw-snapshot-confidence {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.emw-snapshot-confidence-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a6a6a;
}

.emw-snapshot-confidence-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.emw-snapshot-confidence-bar {
    flex: 1;
    height: 6px;
    background: #c9a24a;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.emw-snapshot-confidence-pct {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 44px;
}

.emw-snapshot-confidence-count {
    font-size: 13px;
    color: #4a4a4a;
    margin-top: 2px;
}

.emw-snapshot-confidence-clarification {
    font-size: 12px;
    color: #6a6a6a;
    margin-top: 2px;
    line-height: 1.5;
}

/* Executive Summary Cards */
.emw-snapshot-executive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.emw-snapshot-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 16px;
    background: #f7f8fa;
    border: 1px solid #e8e8e8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emw-snapshot-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.emw-snapshot-card-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.emw-snapshot-card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 2px;
}

.emw-snapshot-card-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.emw-snapshot-card-desc {
    display: block;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
    margin-top: 4px;
}

/* ============================================================
   SECTION 2: PUBLIC SIGNALS REVIEWED
   ============================================================ */
.emw-snapshot-signals-section {
    padding: 72px 40px 80px;
    background: #f7f8fa;
    border-radius: 24px;
    margin: 0 0 20px;
}

.emw-snapshot-signals-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 8px;
}

.emw-snapshot-signals-sub {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 720px;
    margin-bottom: 32px;
}

.emw-snapshot-signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    margin-bottom: 24px;
}

.emw-snapshot-signal-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    background: #ffffff;
    border: 1px solid #e8e8e8;
}

.emw-snapshot-signal-item .emw-snapshot-signal-status {
    flex-shrink: 0;
}

.emw-snapshot-signal-item.pass .emw-snapshot-signal-status { color: #2b7a4b; }
.emw-snapshot-signal-item.warning .emw-snapshot-signal-status { color: #c9a24a; }
.emw-snapshot-signal-item.not_detected .emw-snapshot-signal-status { color: #b22234; }
.emw-snapshot-signal-item.unavailable .emw-snapshot-signal-status { color: #b22234; }

.emw-snapshot-signal-item .emw-snapshot-signal-label {
    flex: 1;
    font-weight: 500;
}

.emw-snapshot-signal-item .emw-snapshot-signal-result {
    font-size: 12px;
    font-weight: 500;
    text-align: right;
    flex-shrink: 0;
}

.emw-snapshot-signal-item.pass .emw-snapshot-signal-result { color: #2b7a4b; }
.emw-snapshot-signal-item.warning .emw-snapshot-signal-result { color: #c9a24a; }
.emw-snapshot-signal-item.not_detected .emw-snapshot-signal-result { color: #b22234; }
.emw-snapshot-signal-item.unavailable .emw-snapshot-signal-result { color: #b22234; }

.emw-snapshot-signals-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6a6a6a;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.emw-snapshot-signals-note svg {
    flex-shrink: 0;
}

/* ============================================================
   SECTION 2.5: TRANSITION TO REPORT
   ============================================================ */
.emw-snapshot-transition-section {
    padding: 72px 0 56px;
}

.emw-snapshot-transition-headline {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 4px 0 12px;
    line-height: 1.2;
}

.emw-snapshot-transition-text {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 75%;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Outcomes */
.emw-snapshot-outcomes {
    margin-bottom: 40px;
}

.emw-snapshot-outcomes-headline {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.emw-snapshot-outcomes-sub {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.emw-snapshot-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 16px;
}

.emw-snapshot-outcome-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f7f8fa;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.emw-snapshot-outcome-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.emw-snapshot-outcome-label {
    flex: 1;
}

/* Chat Preview + AI Block — Full-width balanced grid */
.emw-snapshot-ai-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
}

.emw-snapshot-chat-preview {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid #e8e8e8;
    width: 100%;
    max-width: none;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-header {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 8px;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-row {
    display: flex;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #2a2a2a;
    border-bottom: 1px solid #f0f0f0;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-row:last-child {
    border-bottom: none;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-label {
    font-weight: 600;
    color: #6a6a6a;
    min-width: 80px;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-ai {
    color: #1a1a1a;
}

.emw-snapshot-chat-preview .emw-snapshot-chat-ai .emw-snapshot-chat-placeholder {
    display: inline-block;
    background: #e8e8e8;
    height: 14px;
    border-radius: 4px;
    margin: 2px 0;
}

.emw-snapshot-chat-question {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 16px 0 4px;
}

.emw-snapshot-chat-note {
    font-size: 14px;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.5;
}

/* AI Block (right column) */
.emw-snapshot-ai-block {
    background: #f7f8fa;
    border-radius: 20px;
    padding: 28px 28px;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.emw-snapshot-ai-headline {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.emw-snapshot-ai-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.emw-snapshot-ai-visual {
    flex-shrink: 0;
    width: 100%;
    max-width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 16px;
    margin: 0 auto;
}

.emw-snapshot-ai-visual svg {
    width: 120px;
    height: 120px;
}

/* Big Question */
.emw-snapshot-big-question {
    margin-bottom: 32px;
}

.emw-snapshot-big-question-inner {
    background: #faf8f4;
    border-radius: 20px;
    padding: 40px 44px;
    text-align: center;
    border: 1px solid #e8e4dc;
}

.emw-snapshot-big-question-headline {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.emw-snapshot-big-question-text {
    font-size: 28px;
    font-weight: 700;
    color: #c9a24a;
    margin: 0 0 12px;
}

.emw-snapshot-big-question-sub {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Report Intro */
.emw-snapshot-report-intro {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 20px 28px;
    border-left: 4px solid #c9a24a;
}

.emw-snapshot-report-intro-text {
    font-size: 16px;
    color: #2a2a2a;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION 3: PERSONALIZED BUSINESS VISIBILITY REPORT™
   ============================================================ */
.emw-snapshot-report-section {
    padding: 56px 0 40px;
}

.emw-snapshot-report-grid {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    gap: 56px;
    align-items: start;
}

/* Report Visual */
.emw-snapshot-report-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emw-snapshot-status-card {
    background: #f7f8fa;
    border-radius: 14px;
    padding: 20px 28px;
    text-align: center;
    width: 100%;
    max-width: 560px;
    margin-bottom: 24px;
    border: 1px solid #e8e8e8;
}

.emw-snapshot-status-complete {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2b7a4b;
}

.emw-snapshot-status-label {
    font-size: 13px;
    font-weight: 500;
    color: #6a6a6a;
    margin-top: 2px;
}

.emw-snapshot-status-domain {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', monospace;
    letter-spacing: -0.02em;
    word-break: break-all;
    line-height: 1.2;
    margin: 2px 0;
}

.emw-snapshot-status-date {
    font-size: 13px;
    color: #6a6a6a;
    margin-top: 4px;
}

.emw-snapshot-report-image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin: 0 auto;
}

@media (min-width: 821px) {
    .emw-snapshot-report-image:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }
}

.emw-snapshot-report-caption {
    font-size: 13px;
    color: #6a6a6a;
    text-align: center;
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Report Content */
.emw-snapshot-report-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.emw-snapshot-report-headline {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.emw-snapshot-report-sub {
    font-size: 17px;
    font-weight: 500;
    color: #2a2a2a;
    margin: 0;
}

.emw-snapshot-report-text {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
}

/* Feature Cards */
.emw-snapshot-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    background: #f7f8fa;
    border: 1px solid #e8e8e8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emw-snapshot-feature-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.emw-snapshot-score-card {
    border-left: 4px solid #c9a24a;
    padding: 22px 26px;
    background: #faf8f4;
}

.emw-snapshot-feature-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.emw-snapshot-feature-headline {
    margin-bottom: 2px;
}

.emw-snapshot-gold-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #c9a24a;
    padding: 2px 12px;
    border-radius: 40px;
}

.emw-snapshot-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.emw-snapshot-score-title {
    font-size: 19px;
}

.emw-snapshot-feature-desc {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
}

.emw-snapshot-verified-card {
    border-left: 4px solid #c9a24a;
}

.emw-snapshot-verified-seal {
    display: block;
    width: 82px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: -4px;
}

.emw-snapshot-verified-note {
    font-size: 13px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 4px;
}

/* Report Checklists */
.emw-snapshot-report-included-headline {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 8px 0 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.emw-snapshot-report-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.emw-snapshot-report-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.5;
}

.emw-snapshot-report-check-item svg {
    flex-shrink: 0;
}

.emw-snapshot-report-included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.emw-snapshot-report-included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 1.4;
}

.emw-snapshot-report-included-item svg {
    flex-shrink: 0;
}

/* Sample Guidance Card */
.emw-snapshot-sample-recommendation {
    background: #f7f8fa;
    border-radius: 14px;
    padding: 16px 22px;
    border-left: 4px solid #c9a24a;
}

.emw-snapshot-sample-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a24a;
    margin-bottom: 4px;
}

.emw-snapshot-sample-text {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.6;
    font-style: italic;
}

.emw-snapshot-sample-note {
    font-size: 13px;
    color: #8a8a8a;
    margin-top: 6px;
    font-style: normal;
}

/* ============================================================
   SECTION 4: FINAL CTA
   ============================================================ */
.emw-snapshot-final-cta {
    padding: 60px 0 40px;
}

.emw-snapshot-final-cta-inner {
    background: #f7f8fa;
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e8e8e8;
}

.emw-snapshot-final-headline {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.emw-snapshot-final-text {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 560px;
    margin: 0 auto 28px;
}

/* Final CTA Button */
.emw-snapshot-module .emw-snapshot-cta,
.emw-snapshot-module .emw-snapshot-cta:link,
.emw-snapshot-module .emw-snapshot-cta:visited,
.emw-snapshot-module .emw-snapshot-cta:hover,
.emw-snapshot-module .emw-snapshot-cta:focus,
.emw-snapshot-module .emw-snapshot-cta:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.emw-snapshot-module .emw-snapshot-cta * {
    color: #ffffff !important;
}

.emw-snapshot-cta {
    background: #b22234;
    border: none;
    border-radius: 60px;
    padding: 16px 48px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 8px 28px rgba(178, 34, 52, 0.30);
    text-decoration: none;
    display: inline-block;
    max-width: 640px;
    width: 100%;
}

.emw-snapshot-cta:hover {
    background: #8a1a26;
    transform: scale(1.02);
}

.emw-snapshot-cta:active {
    transform: scale(0.97);
}

.emw-snapshot-final-note {
    font-size: 14px;
    color: #6a6a6a;
    margin-top: 16px;
}

.emw-snapshot-path-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    font-size: 14px;
    color: #6a6a6a;
    margin-top: 16px;
}

.emw-snapshot-path-divider {
    color: #d0d0d0;
}

/* ============================================================
   PARTIAL / ERROR STATES
   ============================================================ */
.emw-snapshot-partial,
.emw-snapshot-error {
    text-align: center;
    padding: 40px 20px;
    background: #f7f8fa;
    border-radius: 24px;
    border: 1px solid #e8e8e8;
    margin-top: 20px;
}

.emw-snapshot-partial-icon,
.emw-snapshot-error-icon {
    margin-bottom: 12px;
    color: #c9a24a;
}

.emw-snapshot-error-icon {
    color: #b22234;
}

.emw-snapshot-partial h3,
.emw-snapshot-error h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.emw-snapshot-partial p,
.emw-snapshot-error p {
    font-size: 15px;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.emw-snapshot-error ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 20px;
    text-align: left;
    display: inline-block;
}

.emw-snapshot-error ul li {
    padding: 4px 0;
    font-size: 14px;
    color: #4a4a4a;
    position: relative;
    padding-left: 20px;
}

.emw-snapshot-error ul li::before {
    content: "•";
    color: #b22234;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.emw-snapshot-btn-retry {
    background: transparent;
    border: 2px solid #b22234;
    color: #b22234;
    border-radius: 60px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 4px 8px;
}

.emw-snapshot-btn-retry:hover {
    background: #b22234;
    color: #fff;
}

.emw-snapshot-btn-eval {
    background: #b22234;
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: 0 4px 12px rgba(178, 34, 52, 0.2);
    margin: 4px 8px;
}

.emw-snapshot-btn-eval:hover {
    background: #8a1a26;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Desktop large adjustments */
@media (max-width: 1100px) {
    .emw-snapshot-report-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .emw-snapshot-report-image {
        max-width: 520px;
    }
    .emw-snapshot-status-card {
        max-width: 520px;
    }

    .emw-snapshot-ai-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .emw-snapshot-ai-block {
        padding: 24px 24px;
    }
    .emw-snapshot-ai-visual {
        max-width: 140px;
        padding: 12px;
    }
    .emw-snapshot-ai-visual svg {
        width: 100px;
        height: 100px;
    }
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .emw-snapshot-form-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 36px 32px;
        border-radius: 24px;
    }

    .emw-snapshot-form-visual {
        order: 7;
        padding: 0;
    }

    .emw-snapshot-form-image {
        max-width: 220px;
    }

    .emw-snapshot-form-content {
        order: 1;
        gap: 10px;
    }

    .emw-snapshot-form-heading {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }

    .emw-snapshot-form-trust-line {
        font-size: 16px;
    }

    .emw-snapshot-form-value-prop {
        font-size: 17px;
        max-width: 100%;
    }

    .emw-snapshot-form-reassurance {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 16px;
    }

    .emw-snapshot-overview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .emw-snapshot-radar-container {
        max-width: 480px;
    }
    .emw-snapshot-signals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .emw-snapshot-report-checklist {
        grid-template-columns: 1fr;
    }
    .emw-snapshot-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .emw-snapshot-ai-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .emw-snapshot-ai-block {
        padding: 24px 20px;
    }
    .emw-snapshot-ai-visual {
        max-width: 120px;
    }
    .emw-snapshot-ai-visual svg {
        width: 80px;
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 820px) {
    .emw-snapshot-module {
        padding: 0 16px;
    }

    .emw-snapshot-form {
        padding: 24px 0 12px;
    }

    .emw-snapshot-form-card {
        padding: 28px 20px;
        border-radius: 20px;
        gap: 20px;
    }

    .emw-snapshot-form-image {
        max-width: 170px;
    }

    .emw-snapshot-form-heading {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .emw-snapshot-form-trust-line {
        font-size: 14px;
    }

    .emw-snapshot-form-value-prop {
        font-size: 15px;
    }

    .emw-snapshot-input-container {
        min-height: 52px;
        padding: 0 14px;
        border-radius: 12px;
    }

    .emw-snapshot-input {
        font-size: 15px;
        padding: 14px 0;
    }

    .emw-snapshot-btn-scan {
        min-height: 52px;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 12px;
    }

    .emw-snapshot-form-reassurance {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 12px;
    }

    .emw-snapshot-reassurance-item {
        font-size: 13px;
        gap: 6px;
    }

    .emw-snapshot-reassurance-item svg {
        width: 16px;
        height: 16px;
    }

    .emw-snapshot-title {
        font-size: 24px;
    }
    .emw-snapshot-header-mark {
        width: 36px;
    }

    .emw-snapshot-overview-headline,
    .emw-snapshot-overview-domain {
        font-size: 26px;
    }
    .emw-snapshot-signals-headline {
        font-size: 24px;
    }
    .emw-snapshot-report-headline {
        font-size: 22px;
    }
    .emw-snapshot-final-headline {
        font-size: 24px;
    }
    .emw-snapshot-final-cta-inner {
        padding: 40px 28px;
    }
    .emw-snapshot-transition-headline {
        font-size: 26px;
    }
    .emw-snapshot-ai-headline {
        font-size: 20px;
    }
    .emw-snapshot-big-question-headline {
        font-size: 18px;
    }
    .emw-snapshot-big-question-text {
        font-size: 24px;
    }
    .emw-snapshot-transition-text {
        max-width: 85%;
    }

    .emw-snapshot-report-included-grid {
        grid-template-columns: 1fr 1fr;
    }
    .emw-snapshot-signals-grid {
        grid-template-columns: 1fr 1fr;
    }
    .emw-snapshot-executive-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .emw-snapshot-path-options {
        flex-direction: column;
        gap: 4px;
    }
    .emw-snapshot-path-divider {
        display: none;
    }
    .emw-snapshot-rescan-bar {
        flex-direction: column;
        text-align: center;
    }
    .emw-snapshot-signals-section {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .emw-snapshot-report-image {
        max-width: 420px;
    }
    .emw-snapshot-status-card {
        max-width: 420px;
    }
    .emw-snapshot-verified-seal {
        width: 68px;
    }
    .emw-snapshot-status-domain {
        font-size: 30px;
    }
    .emw-snapshot-big-question-inner {
        padding: 32px 24px;
    }
    .emw-snapshot-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .emw-snapshot-ai-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .emw-snapshot-ai-block {
        padding: 20px 18px;
    }
    .emw-snapshot-ai-visual {
        max-width: 100px;
        padding: 10px;
    }
    .emw-snapshot-ai-visual svg {
        width: 70px;
        height: 70px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .emw-snapshot-module {
        padding: 0 12px;
    }

    .emw-snapshot-form-card {
        padding: 20px 16px;
        border-radius: 16px;
        gap: 16px;
    }

    .emw-snapshot-form-image {
        max-width: 170px;
    }

    .emw-snapshot-form-heading {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .emw-snapshot-form-trust-line {
        font-size: 13px;
    }

    .emw-snapshot-form-value-prop {
        font-size: 14px;
    }

    .emw-snapshot-input-container {
        min-height: 48px;
        padding: 0 12px;
        border-radius: 10px;
    }

    .emw-snapshot-input {
        font-size: 14px;
        padding: 12px 0;
    }

    .emw-snapshot-btn-scan {
        min-height: 48px;
        font-size: 15px;
        padding: 12px 16px;
        border-radius: 10px;
        gap: 6px;
    }

    .emw-snapshot-btn-scan svg {
        width: 18px;
        height: 18px;
    }

    .emw-snapshot-form-reassurance {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px 8px;
    }

    .emw-snapshot-reassurance-item {
        font-size: 12px;
        gap: 4px;
    }

    .emw-snapshot-reassurance-item svg {
        width: 14px;
        height: 14px;
    }

    .emw-snapshot-title {
        font-size: 20px;
    }
    .emw-snapshot-header {
        gap: 8px;
    }
    .emw-snapshot-header-mark {
        width: 30px;
    }

    .emw-snapshot-overview-headline,
    .emw-snapshot-overview-domain {
        font-size: 22px;
    }
    .emw-snapshot-band-value {
        font-size: 22px;
    }
    .emw-snapshot-signals-headline {
        font-size: 20px;
    }
    .emw-snapshot-report-headline {
        font-size: 20px;
    }
    .emw-snapshot-final-headline {
        font-size: 20px;
    }
    .emw-snapshot-final-cta-inner {
        padding: 32px 20px;
    }
    .emw-snapshot-transition-headline {
        font-size: 22px;
    }
    .emw-snapshot-ai-headline {
        font-size: 18px;
    }
    .emw-snapshot-big-question-headline {
        font-size: 16px;
    }
    .emw-snapshot-big-question-text {
        font-size: 20px;
    }
    .emw-snapshot-transition-text {
        max-width: 100%;
    }

    .emw-snapshot-signals-grid {
        grid-template-columns: 1fr;
    }
    .emw-snapshot-report-included-grid {
        grid-template-columns: 1fr;
    }
    .emw-snapshot-report-image {
        max-width: 100%;
    }
    .emw-snapshot-status-card {
        max-width: 100%;
        padding: 16px 18px;
    }
    .emw-snapshot-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    .emw-snapshot-card {
        padding: 16px 14px;
    }
    .emw-snapshot-card-value {
        font-size: 15px;
    }
    .emw-snapshot-card-desc {
        font-size: 13px;
    }
    .emw-snapshot-feature-card {
        padding: 16px 16px;
    }
    .emw-snapshot-feature-title {
        font-size: 15px;
    }
    .emw-snapshot-score-title {
        font-size: 16px;
    }
    .emw-snapshot-feature-desc {
        font-size: 13px;
    }
    .emw-snapshot-confidence-pct {
        font-size: 13px;
        min-width: 36px;
    }
    .emw-snapshot-disclosure {
        font-size: 12px;
        padding: 10px 14px;
    }
    .emw-snapshot-sample-text {
        font-size: 14px;
    }
    .emw-snapshot-sample-note {
        font-size: 12px;
    }
    .emw-snapshot-verified-seal {
        width: 56px;
    }
    .emw-snapshot-verified-note {
        font-size: 12px;
    }
    .emw-snapshot-report-text {
        font-size: 14px;
    }
    .emw-snapshot-signals-sub {
        font-size: 14px;
    }
    .emw-snapshot-signals-section {
        padding: 32px 16px;
    }
    .emw-snapshot-status-domain {
        font-size: 24px;
    }
    .emw-snapshot-status-label {
        font-size: 12px;
    }
    .emw-snapshot-status-date {
        font-size: 12px;
    }
    .emw-snapshot-report-check-item {
        font-size: 13px;
    }
    .emw-snapshot-report-included-item {
        font-size: 13px;
    }
    .emw-snapshot-transition-text {
        font-size: 14px;
    }
    .emw-snapshot-ai-text {
        font-size: 14px;
    }
    .emw-snapshot-big-question-sub {
        font-size: 14px;
    }
    .emw-snapshot-report-intro-text {
        font-size: 14px;
    }
    .emw-snapshot-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .emw-snapshot-outcome-item {
        font-size: 13px;
        padding: 10px 12px;
    }
    .emw-snapshot-outcome-icon {
        font-size: 18px;
    }
    .emw-snapshot-big-question-inner {
        padding: 24px 16px;
    }
    .emw-snapshot-chat-preview {
        padding: 16px 18px;
    }
    .emw-snapshot-chat-preview .emw-snapshot-chat-row {
        flex-direction: column;
        gap: 2px;
        padding: 8px 0;
    }
    .emw-snapshot-chat-preview .emw-snapshot-chat-label {
        min-width: auto;
    }

    .emw-snapshot-ai-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .emw-snapshot-ai-block {
        padding: 16px 14px;
    }
    .emw-snapshot-ai-visual {
        max-width: 80px;
        padding: 8px;
    }
    .emw-snapshot-ai-visual svg {
        width: 60px;
        height: 60px;
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .emw-snapshot-results-full {
        animation: none !important;
        opacity: 1 !important;
    }
    .emw-snapshot-loading-full .emw-snapshot-loading-dots span {
        animation: none !important;
        opacity: 0.4;
    }
    .emw-snapshot-loading-full .emw-snapshot-progress-bar {
        transition: none !important;
    }
    .emw-snapshot-report-image {
        transition: none !important;
    }
    .emw-snapshot-cta {
        transition: none !important;
    }
    .emw-snapshot-btn-scan {
        transition: none !important;
    }
}