/**
 * EMW Verified™ Public Registry Styles
 *
 * @package EMWBVR
 */

/* ==========================================
   Base Wrapper - Scoped to prevent theme conflicts
   ========================================== */

.emwbvr-public-registry {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ==========================================
   Container
   ========================================== */

.emwbvr-registry-container,
.emwbvr-profile-container,
.emwbvr-404-container {
    max-width: 100%;
}

.emwbvr-public-profile .emwbvr-profile-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================
   Typography
   ========================================== */

.emwbvr-public-registry h1,
.emwbvr-public-registry h2,
.emwbvr-public-registry h3 {
    color: #1a1a2e;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.emwbvr-public-registry h1 {
    font-size: 32px;
    font-weight: 700;
}

.emwbvr-public-registry h2 {
    font-size: 24px;
}

.emwbvr-public-registry h3 {
    font-size: 18px;
}

.emwbvr-public-registry p {
    margin: 0 0 16px 0;
    color: #424242;
}

/* ==========================================
   Brand
   ========================================== */

.emwbvr-brand {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.emwbvr-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}

.emwbvr-registry-title {
    margin-bottom: 8px;
}

/* ==========================================
   Registry Header
   ========================================== */

.emwbvr-registry-header {
    padding: 40px 0 32px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.emwbvr-registry-description {
    font-size: 17px;
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 0;
}

/* ==========================================
   Search Form
   ========================================== */

.emwbvr-search-section {
    margin-bottom: 40px;
}

.emwbvr-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emwbvr-search-input-group {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emwbvr-search-input-group:focus-within {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.emwbvr-search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    color: #1a1a2e;
    background: transparent;
    outline: none;
    min-width: 0;
}

.emwbvr-search-input::placeholder {
    color: #9ca3af;
}

.emwbvr-search-button {
    padding: 14px 32px;
    background: #dc2626;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.emwbvr-search-button:hover {
    background: #b91c1c;
}

.emwbvr-search-button:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.emwbvr-search-clear {
    margin-top: 8px;
}

.emwbvr-clear-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.emwbvr-clear-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* ==========================================
   Results Count
   ========================================== */

.emwbvr-results-count {
    font-size: 15px;
    color: #4b5563;
    padding: 12px 0 20px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

/* ==========================================
   Results Grid
   ========================================== */

.emwbvr-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.emwbvr-result-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.emwbvr-result-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.emwbvr-result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.emwbvr-result-title {
    margin: 0;
    font-size: 20px;
}

.emwbvr-result-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.emwbvr-result-title a:hover {
    color: #dc2626;
    text-decoration: underline;
}

.emwbvr-result-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.emwbvr-result-domain {
    color: #4b5563;
    font-size: 15px;
    word-break: break-all;
}

.emwbvr-result-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px 20px;
    font-size: 14px;
    color: #4b5563;
    background: #f9fafb;
    padding: 12px 16px;
    border-radius: 6px;
}

.emwbvr-result-meta strong {
    color: #1a1a2e;
}

.emwbvr-result-meta code {
    background: #e5e7eb;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #1a1a2e;
}

.emwbvr-result-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.emwbvr-view-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.emwbvr-view-button:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.emwbvr-arrow {
    transition: transform 0.2s ease;
}

.emwbvr-view-button:hover .emwbvr-arrow {
    transform: translateX(4px);
}

/* ==========================================
   Status Badges
   ========================================== */

.emwbvr-status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

.emwbvr-status-verified {
    background: #d1fae5;
    color: #065f46;
}

.emwbvr-status-under_review {
    background: #fef3c7;
    color: #92400e;
}

.emwbvr-status-expired {
    background: #f3f4f6;
    color: #4b5563;
}

.emwbvr-status-suspended {
    background: #fde8e8;
    color: #991b1b;
}

.emwbvr-status-revoked {
    background: #fee2e2;
    color: #7f1d1d;
}

.emwbvr-status-archived {
    background: #f3f4f6;
    color: #6b7280;
}

/* ==========================================
   Profile Page
   ========================================== */

.emwbvr-public-profile {
    max-width: 100%;
    padding: 0 24px 60px;
}

.emwbvr-profile-back {
    padding: 24px 0 16px;
}

.emwbvr-back-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.emwbvr-back-link:hover {
    color: #dc2626;
}

.emwbvr-back-arrow {
    font-size: 18px;
}

.emwbvr-profile-header {
    padding: 12px 0 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 28px;
}

.emwbvr-profile-brand {
    margin-bottom: 8px;
}

.emwbvr-profile-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #1a1a2e;
}

/* Profile Status Banner */
.emwbvr-profile-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 1px solid #e5e7eb;
}

.emwbvr-status-banner-verified {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.emwbvr-status-banner-under_review {
    background: #fffbeb;
    border-color: #fde68a;
}

.emwbvr-status-banner-expired {
    background: #f9fafb;
    border-color: #d1d5db;
}

.emwbvr-status-banner-suspended {
    background: #fef2f2;
    border-color: #fca5a5;
}

.emwbvr-status-banner-revoked {
    background: #fef2f2;
    border-color: #f87171;
}

.emwbvr-status-banner-archived {
    background: #f9fafb;
    border-color: #d1d5db;
}

.emwbvr-status-banner-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.emwbvr-status-banner-content {
    flex: 1;
}

.emwbvr-status-banner-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.emwbvr-status-banner-description {
    font-size: 15px;
    color: #4b5563;
    margin: 0;
}

/* Profile Sections */
.emwbvr-profile-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.emwbvr-profile-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.emwbvr-profile-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1a1a2e;
}

.emwbvr-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}

.emwbvr-profile-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.emwbvr-profile-item label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emwbvr-profile-value {
    font-size: 16px;
    color: #1a1a2e;
    word-break: break-word;
}

.emwbvr-profile-value a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s ease;
}

.emwbvr-profile-value a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.emwbvr-profile-value code {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #1a1a2e;
}

/* Score Display */
.emwbvr-profile-score-section {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 32px;
}

.emwbvr-profile-score-section .emwbvr-profile-section-title {
    margin-bottom: 8px;
}

.emwbvr-score-display {
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
}

.emwbvr-score-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.1;
}

.emwbvr-score-total {
    font-size: 24px;
    font-weight: 400;
    color: #6b7280;
}

.emwbvr-score-category {
    font-size: 20px;
    font-weight: 500;
    color: #dc2626;
}

.emwbvr-score-unspecified {
    font-size: 18px;
    color: #6b7280;
}

/* Profile Description */
.emwbvr-profile-description {
    font-size: 16px;
    color: #424242;
    max-width: 720px;
}

.emwbvr-profile-description p {
    margin-bottom: 12px;
}

.emwbvr-profile-description p:last-child {
    margin-bottom: 0;
}

/* Profile Footer */
.emwbvr-profile-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.emwbvr-profile-notice {
    background: #f9fafb;
    padding: 20px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.emwbvr-profile-notice p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
}

.emwbvr-profile-notice p:last-child {
    margin-bottom: 0;
}

.emwbvr-profile-updated {
    font-size: 14px;
    color: #6b7280;
}

.emwbvr-profile-actions {
    text-align: center;
    margin-bottom: 20px;
}

.emwbvr-profile-verification {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

/* ==========================================
   Buttons
   ========================================== */

.emwbvr-registry-button {
    display: inline-block;
    padding: 12px 32px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.emwbvr-registry-button:hover {
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
}

.emwbvr-registry-button:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* ==========================================
   Empty State
   ========================================== */

.emwbvr-empty-state,
.emwbvr-no-results {
    text-align: center;
    padding: 60px 20px;
}

.emwbvr-empty-icon {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.emwbvr-empty-state h2,
.emwbvr-no-results h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.emwbvr-empty-state p,
.emwbvr-no-results p {
    font-size: 16px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
}

/* ==========================================
   Pagination
   ========================================== */

.emwbvr-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 20px 0 0;
    border-top: 1px solid #f3f4f6;
    margin-top: 8px;
}

.emwbvr-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}

.emwbvr-pagination .page-numbers:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.emwbvr-pagination .page-numbers.current {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    font-weight: 600;
}

.emwbvr-pagination .page-numbers.current:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

.emwbvr-pagination .page-numbers.dots {
    border: none;
    color: #6b7280;
}

.emwbvr-pagination .page-numbers.dots:hover {
    background: transparent;
}

/* ==========================================
   404 Page
   ========================================== */

.emwbvr-404-content {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.emwbvr-404-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.emwbvr-404-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.emwbvr-404-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.emwbvr-404-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   Focus States
   ========================================== */

.emwbvr-public-registry a:focus-visible,
.emwbvr-public-registry button:focus-visible,
.emwbvr-public-registry input:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* ==========================================
   Reduced Motion
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    .emwbvr-public-registry * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet */
@media screen and (max-width: 960px) {
    .emwbvr-public-registry {
        padding: 0 20px 40px;
    }

    .emwbvr-public-profile {
        padding: 0 20px 40px;
    }

    .emwbvr-profile-title {
        font-size: 30px;
    }

    .emwbvr-profile-grid {
        gap: 12px 24px;
    }

    .emwbvr-score-number {
        font-size: 40px;
    }

    .emwbvr-result-meta {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .emwbvr-public-registry {
        padding: 0 16px 32px;
    }

    .emwbvr-public-profile {
        padding: 0 16px 32px;
    }

    .emwbvr-registry-header {
        padding: 24px 0 20px;
    }

    .emwbvr-registry-title {
        font-size: 26px;
    }

    .emwbvr-brand {
        font-size: 24px;
    }

    .emwbvr-subtitle {
        font-size: 16px;
    }

    .emwbvr-search-input-group {
        flex-direction: column;
        border-radius: 8px;
        gap: 0;
    }

    .emwbvr-search-input {
        padding: 12px 16px;
        border-radius: 8px 8px 0 0;
        font-size: 15px;
    }

    .emwbvr-search-button {
        padding: 12px 20px;
        border-radius: 0 0 8px 8px;
        font-size: 15px;
        width: 100%;
    }

    .emwbvr-result-card {
        padding: 16px;
    }

    .emwbvr-result-header {
        flex-direction: column;
        gap: 8px;
    }

    .emwbvr-result-meta {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 14px;
    }

    .emwbvr-profile-title {
        font-size: 26px;
    }

    .emwbvr-profile-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .emwbvr-profile-status-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 20px;
    }

    .emwbvr-score-display {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .emwbvr-score-number {
        font-size: 36px;
    }

    .emwbvr-score-category {
        font-size: 18px;
    }

    .emwbvr-profile-score-section {
        padding: 16px;
    }

    .emwbvr-profile-notice {
        padding: 16px 20px;
    }

    .emwbvr-empty-state,
    .emwbvr-no-results {
        padding: 40px 16px;
    }

    .emwbvr-empty-icon {
        font-size: 48px;
    }

    .emwbvr-404-content {
        padding: 40px 16px;
    }

    .emwbvr-404-icon {
        font-size: 48px;
    }

    .emwbvr-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }

    .emwbvr-profile-verification {
        font-size: 13px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .emwbvr-public-registry {
        padding: 0 12px 24px;
    }

    .emwbvr-public-profile {
        padding: 0 12px 24px;
    }

    .emwbvr-registry-title {
        font-size: 22px;
    }

    .emwbvr-brand {
        font-size: 20px;
    }

    .emwbvr-subtitle {
        font-size: 14px;
    }

    .emwbvr-registry-description {
        font-size: 15px;
    }

    .emwbvr-profile-title {
        font-size: 22px;
    }

    .emwbvr-result-title {
        font-size: 17px;
    }

    .emwbvr-result-meta {
        font-size: 13px;
    }

    .emwbvr-status-badge {
        font-size: 12px;
        padding: 3px 12px;
    }

    .emwbvr-status-banner-title {
        font-size: 16px;
    }

    .emwbvr-status-banner-description {
        font-size: 14px;
    }

    .emwbvr-score-number {
        font-size: 30px;
    }

    .emwbvr-profile-section-title {
        font-size: 16px;
    }
}
/* Business Visibility Platform v2 profile concept */
.emwbvp-profile-hero{display:flex;gap:28px;align-items:center;padding:34px;background:linear-gradient(135deg,#0f172a,#1e293b);color:#fff;border-radius:20px;margin-bottom:24px}.emwbvp-business-logo{width:140px;height:140px;object-fit:contain;background:#fff;border-radius:18px;padding:14px}.emwbvp-hero-copy{flex:1}.emwbvp-summary{font-size:1.1rem;line-height:1.7;max-width:850px}.emwbvp-hero-meta{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}.emwbvp-hero-meta span,.emwbvp-founding-badge{display:inline-block;background:rgba(255,255,255,.12);padding:7px 12px;border-radius:999px}.emwbvp-founding-badge{margin-top:12px;background:#fff;color:#7f1d1d;font-weight:700}.emwbvp-tag-list{display:flex;gap:10px;flex-wrap:wrap}.emwbvp-tag-list span{background:#f1f5f9;border:1px solid #cbd5e1;padding:8px 12px;border-radius:999px}.emwbvp-social-links{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}.emwbvp-social-links a{display:inline-block;padding:9px 14px;border:1px solid #cbd5e1;border-radius:8px}.emwbvp-founders-promise{border:2px solid #bd171b;background:#fff7f7}.emwbvp-founders-promise h2{color:#991b1b}@media(max-width:700px){.emwbvp-profile-hero{display:block}.emwbvp-business-logo{width:100px;height:100px;margin-bottom:18px}}

/* Step 11 — Complete Business Visibility Profile™ */
.emwbvp-public-profile{font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#f7f9fc;color:#101a2e;line-height:1.5}.emwbvp-public-profile *{box-sizing:border-box}.emwbvp-shell{width:min(1460px,calc(100% - 40px));margin:auto}.emwbvp-breadcrumb{background:#fff;border-bottom:1px solid #e4e8ef}.emwbvp-breadcrumb .emwbvp-shell{display:flex;align-items:center;gap:10px;min-height:44px;font-size:13px;color:#667085}.emwbvp-breadcrumb a{color:#53627a;text-decoration:none}.emwbvp-breadcrumb button{margin-left:auto;background:#fff;border:1px solid #aab7ca;border-radius:6px;padding:7px 13px;color:#0c3270;cursor:pointer}.emwbvp-public-hero{background:#071b36;min-height:250px;background-size:cover;background-position:center;color:#fff}.emwbvp-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) 220px 340px;gap:22px;align-items:center;padding:22px 0}.emwbvp-hero-main{display:flex;align-items:center;gap:28px;min-width:0}.emwbvp-public-logo{width:195px;height:195px;object-fit:contain;background:#fff;border-radius:7px;padding:12px;box-shadow:0 8px 30px rgba(0,0,0,.25)}.emwbvp-verified-pill{display:inline-flex;background:#2e8f47;border-radius:5px;padding:6px 11px;font-size:13px;font-weight:700}.emwbvp-public-hero h1{color:#fff;font-size:36px;line-height:1.15;margin:15px 0 4px}.emwbvp-tagline{font-size:17px;color:#fff;margin:0 0 12px}.emwbvp-hero-meta{display:flex;gap:20px;font-weight:600}.emwbvp-hero-actions{display:flex;gap:10px;margin-top:20px}.emwbvp-hero-actions a{display:inline-flex;padding:11px 18px;border-radius:6px;border:1px solid #fff;background:#fff;color:#0b2c62;text-decoration:none;font-weight:700}.emwbvp-hero-actions a.is-primary{background:#082a5e;color:#fff}.emwbvp-score-card{border:2px solid rgba(255,255,255,.8);border-radius:8px;padding:17px;text-align:center;background:rgba(7,18,38,.62);backdrop-filter:blur(4px)}.emwbvp-score-card span{font-weight:700}.emwbvp-score-card strong{display:block;font-size:72px;line-height:1;color:#45bd5b;margin:12px 0 3px}.emwbvp-score-card b{font-size:13px}.emwbvp-stars{color:#ffd13b;font-size:24px;letter-spacing:3px;margin-top:8px}.emwbvp-score-card small{display:block;color:#fff}.emwbvp-registry-card{background:#fff;color:#172033;border-radius:8px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,.22)}.emwbvp-registry-card h2{background:#06264b;color:#fff;font-size:17px;padding:13px 17px;margin:0}.emwbvp-registry-card dl{display:grid;grid-template-columns:1fr 1fr;gap:10px 16px;padding:15px 17px;margin:0}.emwbvp-registry-card dt{font-size:11px;color:#667085}.emwbvp-registry-card dd{margin:2px 0 0;font-weight:700;font-size:12px}.emwbvp-profile-layout{display:grid;grid-template-columns:minmax(0,2fr) 430px;gap:14px;padding:14px 0}.emwbvp-main-column,.emwbvp-side-column{display:flex;flex-direction:column;gap:14px}.emwbvp-two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}.emwbvp-card{background:#fff;border:1px solid #dfe5ee;border-radius:9px;padding:16px;box-shadow:0 2px 8px rgba(16,24,40,.035)}.emwbvp-card h2{font-size:19px;margin:0 0 13px;color:#101a2e}.emwbvp-card-heading{display:flex;justify-content:space-between;align-items:center}.emwbvp-card-heading span{font-size:12px;color:#3458a0}.emwbvp-snapshot-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid #e5e9f0;border-radius:5px;overflow:hidden}.emwbvp-snapshot-grid div{padding:13px;border-right:1px solid #e5e9f0;border-bottom:1px solid #e5e9f0;min-height:70px}.emwbvp-snapshot-grid span{display:block;color:#657085;font-size:11px}.emwbvp-snapshot-grid strong{font-size:13px}.emwbvp-rich-text{font-size:13px;color:#30394c}.emwbvp-rich-text p:last-child{margin-bottom:0}.emwbvp-mini-choices{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:12px}.emwbvp-mini-choices span{border:1px solid #dfe5ee;border-radius:5px;padding:8px;font-size:12px}.emwbvp-services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:9px}.emwbvp-services-grid article{border:1px solid #dfe5ee;border-radius:6px;overflow:hidden;background:#fff}.emwbvp-services-grid img{width:100%;height:95px;object-fit:cover}.emwbvp-services-grid article>div{padding:10px}.emwbvp-services-grid h3{font-size:14px;margin:0;color:#172033}.emwbvp-services-grid p{font-size:11px;color:#667085;margin:5px 0 0}.emwbvp-area-list{list-style:none;padding:0;margin:0;columns:2}.emwbvp-area-list li{display:flex;gap:8px;break-inside:avoid;margin:7px 0;font-size:13px}.emwbvp-area-list b{color:#229343}.emwbvp-area-list small{display:block;color:#667085}.emwbvp-choice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:13px;text-align:center}.emwbvp-choice-grid div{border:1px solid #e2e7ef;border-radius:7px;padding:12px 7px}.emwbvp-choice-grid span{display:block;width:28px;height:28px;border:1px solid #163c7c;border-radius:50%;margin:0 auto 7px;color:#1b4b9a}.emwbvp-choice-grid strong{font-size:12px}.emwbvp-public-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.emwbvp-public-gallery img{display:block;width:100%;height:145px;object-fit:cover;border-radius:6px}.emwbvp-video-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}.emwbvp-video-grid iframe{width:100%;aspect-ratio:16/9;height:auto}.emwbvp-contact-bar{display:flex;align-items:center;gap:22px;flex-wrap:wrap;background:#fff;border:1px solid #dfe5ee;border-radius:9px;padding:14px 18px;font-size:13px}.emwbvp-contact-bar a{color:#122f65;text-decoration:none}.emwbvp-timeline{padding-left:7px}.emwbvp-timeline>div{display:grid;grid-template-columns:20px 1fr auto;gap:8px;align-items:start;min-height:45px;position:relative}.emwbvp-timeline>div:before{content:"";position:absolute;left:6px;top:13px;bottom:-10px;border-left:2px solid #d7e2d9}.emwbvp-timeline>div:last-child:before{display:none}.emwbvp-timeline i{width:12px;height:12px;border-radius:50%;background:#37a34c;margin-top:4px;z-index:1}.emwbvp-timeline span{display:flex;gap:8px;font-size:12px}.emwbvp-timeline span b{border:1px solid #b8d9bf;border-radius:4px;padding:1px 7px}.emwbvp-timeline time{font-size:11px;color:#667085}.emwbvp-complete-score{display:flex;align-items:baseline;gap:10px;color:#218c3b}.emwbvp-complete-score strong{font-size:38px}.emwbvp-progress{height:10px;background:#e1e5eb;border-radius:20px;overflow:hidden}.emwbvp-progress i{display:block;height:100%;background:#2c9d45;border-radius:20px}.emwbvp-check-list{display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:13px}.emwbvp-check-list span{font-size:12px;color:#7b8493}.emwbvp-check-list span.done{color:#168537}.emwbvp-promise{display:flex;gap:14px}.emwbvp-promise-mark{font-size:50px;color:#d1a712}.emwbvp-promise p{font-size:12px}.emwbvp-public-footer{background:#062044;color:#fff;margin-top:12px}.emwbvp-public-footer .emwbvp-shell{display:flex;justify-content:space-between;align-items:center;padding:16px 0}.emwbvp-public-footer p{margin:0;color:#fff}.emwbvp-public-footer span{color:#c6d0df;font-size:13px}.emwbvp-public-footer strong{font-size:20px}.emwbvp-footer-verified{display:inline-flex;align-items:center;gap:9px;white-space:nowrap}.emwbvp-footer-verified img{display:block;width:23px;height:30px;object-fit:contain}.emwbvp-footer-verified span{color:#fff;font-size:20px}
@media(max-width:1100px){.emwbvp-hero-grid{grid-template-columns:1fr 190px}.emwbvp-registry-card{grid-column:1/-1}.emwbvp-profile-layout{grid-template-columns:1fr}.emwbvp-side-column{display:grid;grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.emwbvp-shell{width:min(100% - 22px,1460px)}.emwbvp-breadcrumb strong{display:none}.emwbvp-hero-grid,.emwbvp-two-col,.emwbvp-side-column{grid-template-columns:1fr}.emwbvp-hero-main{align-items:flex-start;flex-direction:column}.emwbvp-public-logo{width:130px;height:130px}.emwbvp-public-hero h1{font-size:28px}.emwbvp-score-card{width:100%}.emwbvp-services-grid,.emwbvp-public-gallery{grid-template-columns:repeat(2,1fr)}.emwbvp-snapshot-grid,.emwbvp-choice-grid{grid-template-columns:repeat(2,1fr)}.emwbvp-video-grid{grid-template-columns:1fr}.emwbvp-public-footer .emwbvp-shell{align-items:flex-start;gap:15px;flex-direction:column}}


/* Milestone 7: unclaimed profile conversion */
.emwbvp-claim-profile{display:flex;align-items:center;justify-content:space-between;gap:28px;border:2px solid #15803d!important;background:linear-gradient(135deg,#f0fdf4,#fff)!important}.emwbvp-claim-profile span{font-size:12px;font-weight:800;letter-spacing:.08em;color:#15803d}.emwbvp-claim-profile h2{margin:6px 0 8px}.emwbvp-claim-profile p{margin:0;max-width:700px}.emwbvp-claim-profile>a{display:inline-flex;white-space:nowrap;padding:14px 22px;border-radius:999px;background:#15803d;color:#fff!important;text-decoration:none;font-weight:800}@media(max-width:760px){.emwbvp-claim-profile{align-items:flex-start;flex-direction:column}.emwbvp-claim-profile>a{width:100%;justify-content:center}}

/* ==========================================================
   v5.0 Institutional Business Visibility Record™
   Fully scoped to .emw-record
   ========================================================== */
.emw-record{--ink:#0b1728;--navy:#071d38;--navy2:#0b2e55;--slate:#526176;--muted:#748297;--line:#d9e0e8;--paper:#fff;--wash:#f4f7fa;--red:#bd171b;--green:#18864b;--amber:#a76500;color:var(--ink);background:#e9eef3;font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;line-height:1.45;min-height:100vh}
.emw-record *{box-sizing:border-box}.emw-record a{color:inherit}.emw-record-topline{height:5px;background:var(--red)}.emw-record-shell{max-width:1320px;margin:0 auto;padding-left:28px;padding-right:28px}
.emw-record-header{background:var(--navy);color:#fff;border-bottom:1px solid rgba(255,255,255,.12)}.emw-record-header-inner{padding-top:18px;padding-bottom:18px;display:flex;align-items:center;justify-content:space-between;gap:24px}.emw-record-brand{display:flex;align-items:center;gap:16px}.emw-record-brand-mark{width:46px;height:46px;border:1px solid rgba(255,255,255,.52);display:grid;place-items:center;font-weight:800;letter-spacing:-1px;border-radius:4px}.emw-record-brand-title{font-weight:760;font-size:20px;letter-spacing:-.25px}.emw-record-brand-title span{color:#e3484b}.emw-record-brand-sub{font-size:11px;color:#b7c3d2;text-transform:uppercase;letter-spacing:1.35px;margin-top:2px}.emw-record-header-actions{display:flex;gap:10px;align-items:center}
.emw-record-btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid transparent;border-radius:4px;padding:10px 14px;font-size:13px;font-weight:750;cursor:pointer;text-decoration:none;line-height:1.2}.emw-record-btn.is-outline{background:transparent;border-color:#68809a;color:#fff}.emw-record-btn.is-red{background:var(--red);color:#fff}.emw-record-btn:hover{filter:brightness(.95);text-decoration:none}
.emw-record-nav{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:20}.emw-record-nav-inner{display:flex;gap:30px;align-items:center;overflow:auto}.emw-record-nav button{appearance:none;border:0;background:none;padding:15px 0 13px;font-weight:700;font-size:13px;color:#5b6879;border-bottom:2px solid transparent;cursor:pointer;white-space:nowrap}.emw-record-nav button.is-active{color:var(--navy);border-color:var(--red)}.emw-record-nav button:last-child{margin-left:auto}
.emw-record-page{padding-top:28px;padding-bottom:60px}.emw-record-masthead{background:linear-gradient(115deg,var(--navy) 0%,#0b3159 72%,#123e69 100%);color:#fff;border-radius:6px;box-shadow:0 14px 34px rgba(11,23,40,.09);overflow:hidden}.emw-record-mast-grid{display:grid;grid-template-columns:1.6fr .74fr;min-height:340px}.emw-record-mast-main{padding:38px 42px 34px}.emw-record-eyebrow{display:flex;align-items:center;gap:10px;text-transform:uppercase;letter-spacing:1.7px;font-size:11px;font-weight:800;color:#bcc9d8}.emw-record-eyebrow:before{content:"";width:26px;height:2px;background:var(--red)}.emw-record-identity{display:flex;gap:18px;align-items:center;margin-top:20px}.emw-record-identity img{width:74px;height:74px;object-fit:contain;background:#fff;border-radius:4px;padding:8px}.emw-record-identity h1{color:#fff;font-size:42px;line-height:1.08;letter-spacing:-1.5px;margin:0 0 8px;font-weight:780}.emw-record-meta{color:#c8d3df;font-size:15px;display:flex;flex-wrap:wrap;gap:12px 22px}.emw-record-meta span+span:before{content:"•";margin-right:22px;color:#7f95aa}.emw-record-status-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px}.emw-record-badge{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,255,255,.25);padding:7px 10px;border-radius:3px;font-size:11px;font-weight:800;letter-spacing:.35px;text-transform:uppercase;background:rgba(255,255,255,.06)}.emw-record-badge i{width:8px;height:8px;border-radius:50%;display:inline-block}.emw-record-badge i.is-green{background:#54ce83;box-shadow:0 0 0 3px rgba(84,206,131,.13)}.emw-record-facts{margin-top:36px;display:grid;grid-template-columns:repeat(4,minmax(110px,1fr));border-top:1px solid rgba(255,255,255,.17)}.emw-record-facts>div{padding:18px 18px 0 0}.emw-record-facts span{display:block;font-size:10px;color:#9fb0c2;text-transform:uppercase;letter-spacing:1px;font-weight:750}.emw-record-facts strong{display:block;font-size:15px;font-weight:760;margin-top:5px}.emw-record-score{background:rgba(4,19,37,.72);padding:30px 28px;display:flex;flex-direction:column;justify-content:center;border-left:1px solid rgba(255,255,255,.15)}.emw-record-score-label{text-transform:uppercase;font-size:11px;letter-spacing:1.5px;color:#b4c2d1;font-weight:800}.emw-record-score-num{font-size:90px;line-height:.95;font-weight:760;letter-spacing:-5px;margin:16px 0 8px}.emw-record-score-out{font-size:13px;color:#c3cfdb}.emw-record-score-band{margin-top:24px;border-top:1px solid rgba(255,255,255,.16);padding-top:18px;display:grid;grid-template-columns:1fr 1fr;gap:16px}.emw-record-score-band div:last-child{text-align:right}.emw-record-score-band span{display:block;font-size:10px;text-transform:uppercase;letter-spacing:1px;color:#9fb0c2}.emw-record-score-band strong{display:block;color:#fff;font-size:14px;margin-top:4px}
.emw-record-notice{margin-top:18px;background:#fff;border:1px solid var(--line);border-left:4px solid var(--red);border-radius:4px;padding:16px 18px;display:flex;justify-content:space-between;align-items:center;gap:20px;box-shadow:0 8px 20px rgba(11,23,40,.04)}.emw-record-notice strong{font-size:14px}.emw-record-notice p{font-size:12px;color:var(--slate);margin:3px 0 0}.emw-record-grid{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(320px,.85fr);gap:18px;margin-top:18px}.emw-record-card{background:#fff;border:1px solid var(--line);border-radius:5px;box-shadow:0 7px 22px rgba(11,23,40,.045);overflow:hidden}.emw-record-card>header{padding:18px 20px 15px;border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;gap:15px}.emw-record-card>header small{display:block;font-size:10px;text-transform:uppercase;letter-spacing:1.15px;color:var(--muted);font-weight:800;margin-bottom:4px}.emw-record-card h2{font-size:17px;font-weight:800;letter-spacing:-.2px;margin:0;color:var(--ink)}.emw-record-card-body{padding:20px}.emw-record-gap{margin-top:18px}.emw-record-small-badge{font-size:10px;color:#28425f;border:1px solid #d6dfe8;background:#f7f9fb;padding:6px 8px;border-radius:3px;text-transform:uppercase;letter-spacing:.6px;font-weight:800}.emw-record-muted{font-size:11px;color:#748297}.emw-record-summary{font-family:Georgia,"Times New Roman",serif;font-size:18px;line-height:1.62;color:#1b2a3d;margin:0}.emw-record-source-note{margin-top:17px;padding-top:14px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:14px;color:#6a7789;font-size:11px}.emw-record-source-note b{color:var(--green)}
.emw-record-assessment{display:grid;gap:16px}.emw-record-assessment>div{display:grid;grid-template-columns:170px 1fr 42px;gap:12px;align-items:center}.emw-record-assessment span{font-size:12px;font-weight:750;color:#29384b}.emw-record-assessment>div>div{height:7px;background:#e6ebf0;border-radius:99px;overflow:hidden}.emw-record-assessment i{display:block;height:100%;background:#193f65}.emw-record-assessment strong{text-align:right;font-size:13px}.emw-record-two-col{display:grid;grid-template-columns:1fr 1fr;gap:18px}.emw-record-table{width:100%;border-collapse:collapse;font-size:12px}.emw-record-table tr+tr{border-top:1px solid #e6ebf0}.emw-record-table th,.emw-record-table td{text-align:left;padding:12px 0;vertical-align:top}.emw-record-table th{width:41%;font-size:10px;text-transform:uppercase;letter-spacing:.7px;color:#748297;font-weight:800}.emw-record-table td{font-weight:650;color:#243448}.emw-record-table a{color:#163f68;text-decoration:none}.emw-record-table a:hover{text-decoration:underline}.emw-record-table.is-wide th{width:auto}.emw-record-services{display:grid;grid-template-columns:repeat(2,1fr);gap:9px}.emw-record-services>div{border:1px solid var(--line);border-radius:3px;padding:11px 12px;font-size:12px;font-weight:700;background:#fbfcfd;display:flex;gap:9px;align-items:center}.emw-record-services>div:before{content:"";width:5px;height:5px;border-radius:50%;background:var(--red)}.emw-record-empty{font-size:12px;color:var(--muted);margin:0}
.emw-record-metrics{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.emw-record-metrics>div{border:1px solid var(--line);padding:14px;border-radius:4px;background:#fbfcfd}.emw-record-metrics span{font-size:10px;text-transform:uppercase;letter-spacing:.9px;color:var(--muted);font-weight:800}.emw-record-metrics strong{display:block;font-size:21px;font-weight:800;margin-top:5px}.emw-record-metrics small{display:block;font-size:11px;color:#748297;margin-top:2px}.emw-record-evidence-list{display:grid}.emw-record-evidence{display:grid;grid-template-columns:26px 1fr auto;gap:12px;padding:13px 0;border-bottom:1px solid #e7ecf1;align-items:start}.emw-record-evidence:last-child{border-bottom:0}.emw-record-evidence>span{width:21px;height:21px;border-radius:50%;display:grid;place-items:center;font-weight:900;font-size:12px}.emw-record-evidence>span.is-confirmed{background:#e9f5ef;color:var(--green)}.emw-record-evidence>span.is-pending{background:#fff5e6;color:var(--amber)}.emw-record-evidence div strong{display:block;font-size:12px}.emw-record-evidence div small{display:block;font-size:10px;color:#788598;margin-top:3px}.emw-record-evidence>b{font-size:10px;text-transform:uppercase;letter-spacing:.7px}.emw-record-evidence>b.is-confirmed{color:var(--green)}.emw-record-evidence>b.is-pending{color:var(--amber)}
.emw-record-timeline{position:relative;margin-left:8px}.emw-record-timeline:before{content:"";position:absolute;left:6px;top:6px;bottom:7px;width:1px;background:#d5dde6}.emw-record-timeline>div{position:relative;padding:0 0 19px 28px}.emw-record-timeline>div:last-child{padding-bottom:0}.emw-record-timeline>div:before{content:"";position:absolute;left:0;top:5px;width:11px;height:11px;background:#fff;border:3px solid #244c72;border-radius:50%}.emw-record-timeline time{display:block;font-size:9px;text-transform:uppercase;letter-spacing:.8px;color:#8591a1;font-weight:800}.emw-record-timeline strong{display:block;font-size:12px;margin-top:2px}.emw-record-timeline p{font-size:11px;color:#6b788b;margin:3px 0 0}.emw-record-panel.is-hidden{display:none}.emw-record-panel[data-emw-panel="evidence"],.emw-record-panel[data-emw-panel="history"]{margin-top:18px}.emw-record-empty-state{text-align:center;padding:42px 20px}.emw-record-empty-state strong{display:block;font-size:16px}.emw-record-empty-state p{max-width:600px;margin:8px auto 0;color:var(--muted);font-size:13px}.emw-record-history article{display:grid;grid-template-columns:180px 1fr;gap:24px;padding:18px 0;border-bottom:1px solid var(--line)}.emw-record-history article:last-child{border-bottom:0}.emw-record-history time{font-size:11px;color:var(--muted);font-weight:700}.emw-record-history h3{font-size:14px;margin:0 0 4px}.emw-record-history p{font-size:12px;color:var(--slate);margin:0}.emw-record-history small{display:block;margin-top:5px;color:var(--muted)}.emw-record-disclaimer{margin:20px auto 0;max-width:980px;text-align:center;color:#69778a;font-size:11px}
@media(max-width:940px){.emw-record-mast-grid,.emw-record-grid,.emw-record-two-col{grid-template-columns:1fr}.emw-record-score{border-left:0;border-top:1px solid rgba(255,255,255,.15)}.emw-record-facts{grid-template-columns:repeat(2,1fr)}.emw-record-header-actions{display:none}.emw-record-nav button:last-child{margin-left:0}}@media(max-width:600px){.emw-record-shell{padding-left:16px;padding-right:16px}.emw-record-mast-main{padding:28px 24px}.emw-record-identity{align-items:flex-start}.emw-record-identity h1{font-size:31px}.emw-record-meta span+span:before{display:none}.emw-record-facts{grid-template-columns:1fr 1fr}.emw-record-metrics,.emw-record-services{grid-template-columns:1fr}.emw-record-notice{align-items:flex-start;flex-direction:column}.emw-record-assessment>div{grid-template-columns:1fr 42px}.emw-record-assessment>div>div{grid-column:1/-1;grid-row:2}.emw-record-history article{grid-template-columns:1fr;gap:5px}.emw-record-source-note{flex-direction:column}.emw-record-nav-inner{gap:22px}}
@media print{.emw-record-header-actions,.emw-record-nav,.emw-record-notice,body>header,body>footer{display:none!important}.emw-record{background:#fff}.emw-record-page{padding-top:0}.emw-record-card,.emw-record-masthead{box-shadow:none;break-inside:avoid}.emw-record-panel.is-hidden{display:block!important}}


/* ==========================================================
   v5.0.1 Institutional contrast and navigation hardening
   Explicitly overrides aggressive theme button/table styling.
   ========================================================== */
.emw-record{--ink:#0a1626;--navy:#061c35;--navy2:#0b3158;--slate:#415268;--muted:#63758b;--line:#cfd8e3;--paper:#ffffff;--wash:#f1f5f9;--red:#bd171b;--red-dark:#941216;--green:#147a43;--amber:#915900}
.emw-record .emw-record-header,
.emw-record .emw-record-masthead,
.emw-record .emw-record-score{color:#fff!important}
.emw-record .emw-record-brand-mark{width:42px;height:50px;border:0;background:transparent;border-radius:0;overflow:hidden}
.emw-record .emw-record-brand-mark img{display:block;width:100%;height:100%;object-fit:contain}
.emw-record .emw-record-brand-title{color:#fff!important}
.emw-record .emw-record-brand-sub{color:#c6d2df!important}
.emw-record .emw-record-header-actions .emw-record-btn,
.emw-record .emw-record-notice .emw-record-btn{min-height:38px!important;padding:10px 16px!important;border-radius:3px!important;font-family:inherit!important;font-size:12px!important;font-weight:800!important;letter-spacing:.15px!important;text-transform:none!important;line-height:1.2!important;box-shadow:none!important;opacity:1!important}
.emw-record .emw-record-btn.is-red,
.emw-record a.emw-record-btn.is-red,
.emw-record a.emw-record-btn.is-red:visited{background:var(--red)!important;border:1px solid var(--red)!important;color:#fff!important;text-decoration:none!important}
.emw-record .emw-record-btn.is-red:hover,
.emw-record a.emw-record-btn.is-red:hover{background:var(--red-dark)!important;border-color:var(--red-dark)!important;color:#fff!important}
.emw-record .emw-record-btn.is-outline{background:transparent!important;border:1px solid #8ba0b7!important;color:#fff!important}
.emw-record .emw-record-btn.is-outline:hover{background:#fff!important;border-color:#fff!important;color:var(--navy)!important}

.emw-record .emw-record-nav{background:#fff!important;border-bottom:1px solid #cbd5e1!important;box-shadow:0 4px 14px rgba(7,29,56,.06)}
.emw-record .emw-record-nav-inner{gap:0!important;min-height:52px}
.emw-record .emw-record-nav button{position:relative!important;display:inline-flex!important;align-items:center!important;min-height:52px!important;margin:0!important;padding:0 22px!important;border:0!important;border-right:1px solid #e2e8f0!important;border-bottom:3px solid transparent!important;border-radius:0!important;background:#fff!important;color:#334155!important;font-family:inherit!important;font-size:12px!important;font-weight:760!important;line-height:1!important;text-transform:none!important;box-shadow:none!important;opacity:1!important}
.emw-record .emw-record-nav button:hover{background:#f8fafc!important;color:var(--navy)!important}
.emw-record .emw-record-nav button.is-active{background:#f8fafc!important;color:var(--navy)!important;border-bottom-color:var(--red)!important}
.emw-record .emw-record-nav button:last-child{margin-left:auto!important;border-left:1px solid #e2e8f0!important;border-right:0!important;color:#7f1d1d!important}

.emw-record .emw-record-masthead{background:linear-gradient(115deg,#09284a 0%,#061c35 74%,#06182d 100%)!important}
.emw-record .emw-record-score{position:relative;overflow:hidden;background:#06182d!important}
.emw-record .emw-record-score>*:not(.emw-record-score-seal){position:relative;z-index:2}
.emw-record .emw-record-score-seal{position:absolute;right:-42px;top:-20px;width:230px;height:auto;opacity:.055;filter:grayscale(1) brightness(3);pointer-events:none;z-index:1}
.emw-record .emw-record-score-label,
.emw-record .emw-record-score-out,
.emw-record .emw-record-score-band span{color:#c4d0dd!important}
.emw-record .emw-record-score-num,
.emw-record .emw-record-score-band strong{color:#fff!important}
.emw-record .emw-record-score-num{min-height:88px}
.emw-record .emw-record-facts span{color:#b8c6d5!important}
.emw-record .emw-record-facts strong{color:#fff!important}

.emw-record .emw-record-card{background:#fff!important;border-color:#cfd8e3!important}
.emw-record .emw-record-card>header{background:#fff!important}
.emw-record .emw-record-card h2,
.emw-record .emw-record-card h3{color:#0a1626!important}
.emw-record .emw-record-card small,
.emw-record .emw-record-muted{color:#63758b!important}
.emw-record .emw-record-card-body{background:#fff!important;color:#17263a!important}
.emw-record table.emw-record-table{background:#fff!important;color:#17263a!important;border-collapse:collapse!important}
.emw-record table.emw-record-table tr{background:#fff!important}
.emw-record table.emw-record-table tr:nth-child(even){background:#f8fafc!important}
.emw-record table.emw-record-table th,
.emw-record table.emw-record-table td{border:0!important;border-bottom:1px solid #dbe3ec!important;background:transparent!important;text-shadow:none!important;opacity:1!important}
.emw-record table.emw-record-table th{padding:12px 14px!important;color:#53657a!important;font-size:10px!important;font-weight:800!important;letter-spacing:.7px!important}
.emw-record table.emw-record-table td{padding:12px 14px!important;color:#111f31!important;font-size:12px!important;font-weight:700!important}
.emw-record table.emw-record-table td a,
.emw-record table.emw-record-table td a:visited{color:#a61217!important;font-weight:800!important}
.emw-record .emw-record-services>div,
.emw-record .emw-record-metrics>div{background:#f8fafc!important;color:#17263a!important;border-color:#d7e0e9!important}
.emw-record .emw-record-summary{color:#17263a!important}
.emw-record .emw-record-notice{background:#fff!important;color:#0a1626!important}
.emw-record .emw-record-notice p{color:#415268!important}

@media(max-width:940px){
 .emw-record .emw-record-nav button:last-child{margin-left:0!important}
}
@media(max-width:700px){
 .emw-record .emw-record-nav-inner{padding-left:0!important;padding-right:0!important}
 .emw-record .emw-record-nav button{padding:0 15px!important;min-height:48px!important}
}

/* v5.0.3 — Business Visibility Assessment readability polish */
.emw-record .emw-record-score {
    position: relative;
    overflow: hidden;
    background: #06182d !important;
    padding: 34px 30px 30px !important;
    min-height: 340px;
    justify-content: flex-start !important;
}
.emw-record .emw-record-score-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
}
.emw-record .emw-record-score-label {
    max-width: 230px;
    color: #d8e2ec !important;
    font-size: 11px !important;
    line-height: 1.45;
    letter-spacing: 1.45px;
}
.emw-record .emw-record-score-seal {
    position: static !important;
    flex: 0 0 auto;
    width: 42px !important;
    height: 54px !important;
    object-fit: contain;
    opacity: .42 !important;
    filter: grayscale(1) brightness(2.25) !important;
    z-index: auto !important;
    pointer-events: none;
}
.emw-record .emw-record-score-num {
    color: #fff !important;
    font-size: 82px !important;
    line-height: .95 !important;
    min-height: 0 !important;
    margin: 22px 0 6px !important;
}
.emw-record .emw-record-score-out {
    color: #c8d4df !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.emw-record .emw-record-score-pending {
    color: #f4bf53 !important;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 760;
    letter-spacing: -.45px;
    margin: 30px 0 10px;
}
.emw-record .emw-record-score-pending-note {
    color: #c8d4df !important;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    max-width: 255px;
}
.emw-record .emw-record-score-band {
    margin-top: auto !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255,255,255,.18) !important;
}
.emw-record .emw-record-score-band span {
    color: #9fb2c6 !important;
}
.emw-record .emw-record-score-band strong {
    color: #fff !important;
    line-height: 1.35;
}
.emw-record .emw-record-score.is-pending .emw-record-score-band strong:first-child {
    color: #f4bf53 !important;
}
@media (max-width: 940px) {
    .emw-record .emw-record-score { min-height: 300px; }
}
@media (max-width: 600px) {
    .emw-record .emw-record-score { min-height: 290px; padding: 28px 24px !important; }
    .emw-record .emw-record-score-pending { font-size: 26px; }
    .emw-record .emw-record-score-num { font-size: 70px !important; }
}

/* v5.1.0 Ownership Claim & Verification Center */
.emw-claim-page{background:#eef2f6;padding:42px 18px 70px;color:#102033}.emw-claim-shell{max-width:1040px;margin:0 auto}.emw-claim-header{display:flex;gap:20px;align-items:center;background:#071d37;border-top:4px solid #bd171b;color:#fff;padding:26px 30px}.emw-claim-header img{width:38px;height:50px;object-fit:contain}.emw-claim-header small{display:block;color:#a9c1dc;font-weight:700;letter-spacing:.12em;font-size:11px}.emw-claim-header h1{color:#fff;margin:5px 0 4px;font-size:30px;line-height:1.2}.emw-claim-header p{margin:0;color:#d7e2ee}.emw-claim-card{background:#fff;border:1px solid #d7dee7;padding:32px;margin-top:18px;box-shadow:0 8px 28px rgba(13,30,50,.06)}.emw-claim-card h2{margin:4px 0 10px;color:#071d37;font-size:25px}.emw-claim-card p{color:#46576b;line-height:1.65}.emw-claim-step{display:inline-block;color:#bd171b;font-weight:800;text-transform:uppercase;letter-spacing:.1em;font-size:11px}.emw-claim-button{display:inline-flex;align-items:center;justify-content:center;background:#bd171b!important;color:#fff!important;border:1px solid #bd171b!important;padding:13px 19px;text-decoration:none!important;font-weight:800;cursor:pointer;border-radius:3px}.emw-claim-button:hover{background:#9f1014!important}.emw-claim-card>small{display:block;margin-top:14px;color:#68778a}.emw-claim-alert{padding:14px 18px;margin-top:18px;border-left:4px solid}.emw-claim-alert.is-success{background:#edf8f1;border-color:#168a45;color:#0f6332}.emw-claim-alert.is-error{background:#fff0f0;border-color:#bd171b;color:#851216}.emw-claim-methods{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:24px 0}.emw-claim-methods label{display:flex;gap:12px;border:1px solid #d8e0e8;padding:16px;background:#fbfcfd;cursor:pointer}.emw-claim-methods label:has(input:checked){border-color:#163f68;box-shadow:inset 0 0 0 1px #163f68;background:#f4f8fc}.emw-claim-methods input{margin-top:4px}.emw-claim-methods b{display:block;color:#0b2440}.emw-claim-methods small{display:block;color:#617184;line-height:1.45;margin-top:4px}.emw-claim-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:20px 0}.emw-claim-fields label{font-weight:700;color:#24384e}.emw-claim-fields input,.emw-claim-fields textarea{display:block;width:100%;margin-top:7px;border:1px solid #bdc8d4;padding:11px;background:#fff;color:#102033;box-sizing:border-box}.emw-claim-instructions{border:1px solid #cbd6e1;background:#f7f9fb;padding:22px;margin-top:22px}.emw-claim-instructions h3{margin-top:0;color:#0b2440}.emw-claim-instructions code{display:block;white-space:normal;word-break:break-all;background:#071d37;color:#fff;padding:13px;margin:10px 0}.emw-claim-footer{font-size:12px;color:#667689;padding:18px 4px;line-height:1.6}@media(max-width:760px){.emw-claim-header{align-items:flex-start;padding:22px}.emw-claim-header h1{font-size:24px}.emw-claim-card{padding:22px}.emw-claim-methods,.emw-claim-fields{grid-template-columns:1fr}}

/* v5.1.1 Claim Center institutional layout and theme-isolation */
body .emw-claim-page{font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;background:#edf1f5!important;padding:48px 18px 76px!important;color:#13263b!important}
body .emw-claim-page *{box-sizing:border-box}
body .emw-claim-shell{max-width:1120px!important;margin:0 auto!important}
body .emw-claim-header{display:grid!important;grid-template-columns:64px 1fr!important;gap:22px!important;align-items:center!important;background:#071d37!important;border:0!important;border-top:5px solid #bd171b!important;color:#fff!important;padding:30px 34px!important;box-shadow:0 12px 34px rgba(7,29,55,.14)!important}
body .emw-claim-brand{width:58px;height:68px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.24);background:rgba(255,255,255,.035)}
body .emw-claim-header img{width:38px!important;height:50px!important;object-fit:contain!important}
body .emw-claim-header small{display:block!important;color:#abc2dc!important;font-weight:800!important;letter-spacing:.13em!important;font-size:10px!important;text-transform:uppercase!important}
body .emw-claim-header h1{color:#fff!important;margin:7px 0 12px!important;font-size:clamp(28px,3.3vw,42px)!important;line-height:1.1!important;letter-spacing:-.025em!important;font-weight:750!important}
body .emw-claim-record-meta{display:flex;flex-wrap:wrap;align-items:center;gap:9px 18px;color:#dbe6f1;font-size:13px}
body .emw-claim-record-meta strong{color:#fff}.emw-claim-record-meta span{position:relative}.emw-claim-record-meta span:before{content:"";position:absolute;left:-10px;top:50%;width:3px;height:3px;border-radius:50%;background:#7f9bb8}
body .emw-claim-progress{display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;background:#fff!important;border:1px solid #d6dee7!important;border-top:0!important;padding:15px 22px!important;color:#718094!important}
body .emw-claim-progress span{width:34px;height:34px;border:1px solid #cbd5df;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;position:relative;background:#fff}
body .emw-claim-progress span b{position:absolute;top:39px;left:50%;transform:translateX(-50%);white-space:nowrap;font-size:9px;text-transform:uppercase;letter-spacing:.08em;color:#68778a}
body .emw-claim-progress span.is-complete{background:#168a45;border-color:#168a45;color:#fff}.emw-claim-progress span.is-current{background:#071d37;border-color:#071d37;color:#fff}.emw-claim-progress i{height:1px;width:78px;background:#cbd5df}
body .emw-claim-card{background:#fff!important;border:1px solid #d4dde7!important;border-radius:2px!important;padding:38px!important;margin-top:34px!important;box-shadow:0 10px 30px rgba(13,30,50,.055)!important;color:#13263b!important}
body .emw-claim-card-head{display:grid;grid-template-columns:1fr 280px;gap:34px;align-items:start;border-bottom:1px solid #e0e6ed;padding-bottom:26px;margin-bottom:28px}
body .emw-claim-card h2{margin:5px 0 10px!important;color:#071d37!important;font-size:clamp(24px,2.5vw,34px)!important;line-height:1.18!important;letter-spacing:-.02em!important}
body .emw-claim-lead,body .emw-claim-card p{color:#526478!important;line-height:1.7!important;font-size:15px!important;margin:0!important}
body .emw-claim-step{display:inline-block!important;color:#bd171b!important;font-weight:900!important;text-transform:uppercase!important;letter-spacing:.12em!important;font-size:10px!important}
body .emw-claim-security-note{border-left:3px solid #bd171b;background:#f5f7fa;padding:16px 18px}.emw-claim-security-note strong,.emw-claim-security-note span{display:block}.emw-claim-security-note strong{color:#13263b;font-size:13px}.emw-claim-security-note span{color:#69798b;font-size:12px;line-height:1.55;margin-top:5px}
body .emw-claim-section-label{display:flex;gap:13px;align-items:center;margin:26px 0 14px}.emw-claim-section-label>span{display:flex;align-items:center;justify-content:center;width:31px;height:31px;background:#071d37;color:#fff;font-size:11px;font-weight:900}.emw-claim-section-label strong,.emw-claim-section-label small{display:block}.emw-claim-section-label strong{color:#102840;font-size:15px}.emw-claim-section-label small{color:#748294;font-size:11px;margin-top:2px}
body .emw-claim-methods{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important;margin:0 0 32px!important}
body .emw-claim-methods label{display:grid!important;grid-template-columns:18px 44px 1fr!important;gap:12px!important;align-items:start!important;border:1px solid #d5dee7!important;border-radius:2px!important;padding:18px!important;background:#fff!important;cursor:pointer!important;min-height:112px!important;transition:border-color .15s ease,background .15s ease,box-shadow .15s ease!important}
body .emw-claim-methods label:hover{border-color:#91a3b5!important;background:#fafbfd!important}
body .emw-claim-methods label:has(input:checked),body .emw-claim-methods label.is-selected{border-color:#0b355f!important;box-shadow:inset 0 0 0 1px #0b355f!important;background:#f5f8fb!important}
body .emw-claim-methods input[type=radio]{appearance:auto!important;-webkit-appearance:radio!important;width:16px!important;height:16px!important;margin:4px 0 0!important;accent-color:#bd171b!important}
body .emw-method-icon{width:42px;height:42px;border:1px solid #bac7d4;background:#f2f5f8;color:#173a5e;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:900;letter-spacing:.02em}
body .emw-claim-methods b{display:block!important;color:#0a2745!important;font-size:14px!important;line-height:1.3!important}.emw-claim-methods small{display:block!important;color:#607286!important;line-height:1.5!important;margin-top:5px!important;font-size:12px!important}.emw-claim-methods em{display:inline-block;color:#526579;font-style:normal;font-weight:800;font-size:9px;text-transform:uppercase;letter-spacing:.08em;margin-top:9px}
body .emw-claim-fields{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px!important;margin:0 0 26px!important;padding:24px!important;background:#f7f9fb!important;border:1px solid #dce3ea!important}
body .emw-claim-fields label{display:block!important;font-weight:800!important;color:#233b52!important;font-size:12px!important;margin:0!important}.emw-claim-fields label>small{display:block;color:#788697;font-size:10px;font-weight:500;margin-top:2px;line-height:1.4}.emw-claim-fields input:not([type=file]),body .emw-claim-fields textarea{display:block!important;width:100%!important;margin-top:8px!important;border:1px solid #b8c5d2!important;border-radius:2px!important;padding:12px 13px!important;background:#fff!important;color:#102033!important;box-shadow:none!important;font:inherit!important;font-size:14px!important;min-height:45px!important}.emw-claim-fields input:focus,.emw-claim-fields textarea:focus{outline:2px solid rgba(11,53,95,.16)!important;border-color:#0b355f!important}.emw-claim-notes{grid-column:1/-1}.emw-file-wrap{display:flex;align-items:center;min-height:45px;margin-top:8px;padding:7px;background:#fff;border:1px solid #b8c5d2}.emw-file-wrap input{width:100%;font-size:12px;color:#42566c}
body .emw-claim-submit{display:flex!important;justify-content:space-between!important;align-items:center!important;gap:24px!important;border-top:1px solid #dce3ea!important;padding-top:24px!important}.emw-claim-submit strong,.emw-claim-submit span{display:block}.emw-claim-submit strong{color:#17344f;font-size:13px}.emw-claim-submit span{color:#728093;font-size:11px;max-width:650px;line-height:1.5;margin-top:3px}
body .emw-claim-button{display:inline-flex!important;align-items:center!important;justify-content:center!important;background:#bd171b!important;color:#fff!important;border:1px solid #bd171b!important;padding:13px 22px!important;text-decoration:none!important;font-weight:850!important;font-size:13px!important;cursor:pointer!important;border-radius:2px!important;line-height:1.2!important;min-height:45px!important;box-shadow:none!important;text-transform:none!important}.emw-claim-button:hover,.emw-claim-button:focus{background:#991116!important;border-color:#991116!important;color:#fff!important}
body .emw-claim-instructions{border:1px solid #cbd6e1!important;border-left:4px solid #0b355f!important;background:#f7f9fb!important;padding:26px!important;margin-top:22px!important}.emw-claim-instructions h3{margin:0 0 10px!important;color:#0b2440!important;font-size:20px!important}.emw-claim-instructions code{display:block!important;white-space:normal!important;word-break:break-all!important;background:#071d37!important;color:#fff!important;padding:14px!important;margin:12px 0!important;font-family:ui-monospace,SFMono-Regular,Menlo,monospace!important;font-size:12px!important}
body .emw-claim-alert{padding:15px 18px!important;margin-top:22px!important;border:1px solid!important;border-left-width:4px!important;font-weight:650!important}.emw-claim-alert.is-success{background:#edf8f1!important;border-color:#168a45!important;color:#0f6332!important}.emw-claim-alert.is-error{background:#fff0f0!important;border-color:#bd171b!important;color:#851216!important}
body .emw-claim-state{display:flex;gap:20px;align-items:flex-start}.emw-claim-state-mark{width:46px;height:46px;border-radius:50%;background:#168a45;color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;flex:0 0 auto}
body .emw-claim-footer{display:flex!important;justify-content:space-between!important;gap:22px!important;font-size:11px!important;color:#667689!important;padding:20px 3px!important;line-height:1.6!important}.emw-claim-footer strong{color:#243b53}.emw-claim-footer span{text-align:right}
body .emw-claim-fields label.is-hidden{display:none!important}
@media(max-width:820px){body .emw-claim-card-head{grid-template-columns:1fr}.emw-claim-security-note{display:none}.emw-claim-methods{grid-template-columns:1fr!important}.emw-claim-header{grid-template-columns:52px 1fr!important;padding:24px!important}.emw-claim-brand{width:48px;height:60px}.emw-claim-record-meta{gap:7px 12px}.emw-claim-progress i{width:36px}.emw-claim-card{padding:25px!important}.emw-claim-fields{grid-template-columns:1fr!important;padding:18px!important}.emw-claim-notes{grid-column:auto}.emw-claim-submit{align-items:stretch!important;flex-direction:column!important}.emw-claim-button{width:100%}.emw-claim-footer{display:block!important}.emw-claim-footer span{display:block;text-align:left;margin-top:4px}}
@media(max-width:520px){body .emw-claim-page{padding:20px 10px 50px!important}.emw-claim-header{grid-template-columns:1fr!important}.emw-claim-brand{display:none}.emw-claim-header h1{font-size:27px!important}.emw-claim-record-meta{display:block}.emw-claim-record-meta span,.emw-claim-record-meta strong{display:block;margin-top:4px}.emw-claim-record-meta span:before{display:none}.emw-claim-progress span b{display:none}.emw-claim-progress{padding:12px!important}.emw-claim-card{margin-top:20px!important;padding:20px!important}.emw-claim-methods label{grid-template-columns:18px 38px 1fr!important;padding:14px!important}.emw-method-icon{width:36px;height:36px}.emw-claim-section-label small{display:none}}

/* v5.2.0 Registry Identity & Trust Layer */
.emw-record-badge.is-status-active,.emw-record-badge.is-status-verified{border-color:#a9d8bc;background:#f3fbf6;color:#166534}
.emw-record-badge.is-status-public,.emw-record-badge.is-status-monitoring{border-color:#b9ccdf;background:#f5f8fb;color:#173b5f}
.emw-record-badge.is-status-pending{border-color:#ead39a;background:#fffaf0;color:#8a5a00}
.emw-record-badge.is-status-locked{border-color:#c8ced6;background:#f6f7f8;color:#374151}
.emw-record-permanent .emw-record-card-body>p{margin:0 0 16px;color:#526174;line-height:1.65;font-size:12px}
.emw-record-permanent dl{margin:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid var(--line);border-radius:6px;overflow:hidden}
.emw-record-permanent dl>div{padding:12px 14px;background:#fafbfd;border-right:1px solid var(--line)}
.emw-record-permanent dl>div:last-child{border-right:0}
.emw-record-permanent dt{font-size:9px;letter-spacing:.75px;text-transform:uppercase;color:#7b8797;font-weight:800}
.emw-record-permanent dd{margin:4px 0 0;color:#0b223d;font-size:12px;font-weight:800;overflow-wrap:anywhere}
.emw-record-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
@media(max-width:700px){.emw-record-permanent dl{grid-template-columns:1fr}.emw-record-permanent dl>div{border-right:0;border-bottom:1px solid var(--line)}.emw-record-permanent dl>div:last-child{border-bottom:0}}

/* v5.3.0 Evidence Ledger & Record Versioning */
.emw-ledger-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border:1px solid var(--line);background:#fff;margin-bottom:18px}
.emw-ledger-summary>div{padding:18px 20px;border-right:1px solid var(--line)}.emw-ledger-summary>div:last-child{border-right:0}
.emw-ledger-summary span,.emw-ledger-summary strong,.emw-ledger-summary small{display:block}.emw-ledger-summary span{font-size:9px;letter-spacing:.08em;text-transform:uppercase;color:#728094;font-weight:850}.emw-ledger-summary strong{font-size:27px;line-height:1.15;color:#0b223d;margin:5px 0 3px}.emw-ledger-summary small{font-size:10px;color:#728094}
.emw-ledger-intro{margin:0 0 18px;color:#526174;font-size:12px;line-height:1.65;max-width:900px}.emw-ledger-table-wrap{overflow-x:auto;border:1px solid var(--line)}
.emw-ledger-table{margin:0!important;border:0!important;min-width:760px}.emw-ledger-table th{background:#f3f6f9!important;color:#526174!important;font-size:9px!important;letter-spacing:.07em!important;text-transform:uppercase!important}.emw-ledger-table td{vertical-align:middle!important}.emw-ledger-table td:first-child strong{color:#112b46;font-size:12px}
.emw-ledger-tag{display:inline-flex;align-items:center;min-height:24px;padding:4px 8px;border:1px solid;font-size:9px;font-weight:850;letter-spacing:.05em;text-transform:uppercase;white-space:nowrap}.emw-ledger-tag.is-primary{background:#edf8f1;border-color:#a9d8bc;color:#166534}.emw-ledger-tag.is-authoritative{background:#f1f6fb;border-color:#b8ccdf;color:#16446e}.emw-ledger-tag.is-supporting{background:#fff8e8;border-color:#ead39a;color:#805400}.emw-ledger-tag.is-observed{background:#f5f6f7;border-color:#ccd2d9;color:#4b5563}
.emw-confidence{display:inline-flex;align-items:baseline;gap:6px}.emw-confidence b{font-size:12px}.emw-confidence small{font-size:9px;text-transform:uppercase;letter-spacing:.05em}.emw-confidence.is-high{color:#166534}.emw-confidence.is-moderate{color:#805400}.emw-confidence.is-developing{color:#8a2d2d}
.emw-source-governance{display:grid;gap:0}.emw-source-governance>div{display:grid;grid-template-columns:110px 1fr;gap:14px;align-items:center;padding:12px 0;border-bottom:1px solid var(--line)}.emw-source-governance>div:last-child{border-bottom:0}.emw-source-governance p{margin:0;color:#596b7d;font-size:11px;line-height:1.5}
.emw-methodology-list{margin:0}.emw-methodology-list>div{display:grid;grid-template-columns:120px 1fr;padding:11px 0;border-bottom:1px solid var(--line)}.emw-methodology-list dt{font-size:9px;text-transform:uppercase;letter-spacing:.06em;color:#748296;font-weight:850}.emw-methodology-list dd{margin:0;color:#18324d;font-size:11px;font-weight:700}.emw-methodology-note{margin:15px 0 0;padding:12px 14px;background:#f5f7f9;border-left:3px solid #7d8da0;color:#637285;font-size:10px;line-height:1.55}
.emw-history-head{display:flex;justify-content:space-between;align-items:flex-end;gap:30px;padding:25px 28px;background:#0a223d;color:#fff;border-top:3px solid #bd171b}.emw-history-head>div:first-child small{font-size:9px;text-transform:uppercase;letter-spacing:.1em;color:#9eb8d1;font-weight:850}.emw-history-head h2{margin:5px 0 5px!important;color:#fff!important;font-size:25px!important}.emw-history-head p{margin:0;color:#c5d3df;font-size:11px}.emw-history-head>div:last-child{min-width:145px;text-align:right}.emw-history-head>div:last-child span,.emw-history-head>div:last-child strong,.emw-history-head>div:last-child small{display:block}.emw-history-head>div:last-child span{font-size:9px;text-transform:uppercase;letter-spacing:.08em;color:#9eb8d1}.emw-history-head>div:last-child strong{font-size:32px;line-height:1.1;margin:3px 0}.emw-history-head>div:last-child small{color:#c5d3df;font-size:10px}
.emw-version-ledger{padding:0!important}.emw-version-ledger article{display:grid;grid-template-columns:100px 1fr;border-bottom:1px solid var(--line)}.emw-version-ledger article:last-child{border-bottom:0}.emw-version-number{padding:22px 18px;background:#f4f6f8;border-right:1px solid var(--line);text-align:center}.emw-version-number span,.emw-version-number strong{display:block}.emw-version-number span{font-size:8px;text-transform:uppercase;letter-spacing:.08em;color:#7a8797;font-weight:850}.emw-version-number strong{font-size:22px;color:#0b2947;margin-top:4px}.emw-version-content{padding:20px 24px}.emw-version-title{display:flex;justify-content:space-between;gap:20px;align-items:baseline}.emw-version-title h3{margin:0!important;color:#102c48!important;font-size:15px!important}.emw-version-title time{color:#778597;font-size:10px;white-space:nowrap}.emw-version-content p{margin:7px 0 10px;color:#596b7d;font-size:11px;line-height:1.6}.emw-version-meta{display:flex;flex-wrap:wrap;gap:7px}.emw-version-meta span{padding:4px 7px;background:#f1f4f7;border:1px solid #dbe2e9;color:#536477;font-size:9px;font-weight:750}.emw-record-integrity .emw-record-card-body p{margin:0;color:#526174;font-size:11px;line-height:1.7}
@media(max-width:800px){.emw-ledger-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.emw-ledger-summary>div:nth-child(2){border-right:0}.emw-ledger-summary>div:nth-child(-n+2){border-bottom:1px solid var(--line)}.emw-history-head{align-items:flex-start}.emw-version-title{display:block}.emw-version-title time{display:block;margin-top:4px}}
@media(max-width:520px){.emw-ledger-summary{grid-template-columns:1fr}.emw-ledger-summary>div{border-right:0!important;border-bottom:1px solid var(--line)!important}.emw-ledger-summary>div:last-child{border-bottom:0!important}.emw-source-governance>div,.emw-methodology-list>div{grid-template-columns:1fr}.emw-history-head{display:block;padding:22px}.emw-history-head>div:last-child{text-align:left;margin-top:18px}.emw-version-ledger article{grid-template-columns:72px 1fr}.emw-version-number{padding:18px 10px}.emw-version-content{padding:18px 15px}}
