:root {
    --bg-page: #020617;
    --bg-dark: #0f172a;
    --bg-well: #020202;
    --bg-card: #0f172a;
    --bg-card-light: #1e293b;
    --success-color: #10b981;
    --danger-color: #e11d48;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e1;
    --text-muted: #7f8ea3;
    --text-headers: #64748b;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-very-subtle: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-page);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at center, transparent 0%, var(--bg-page) 70%),
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(255, 255, 255, 0.02) 19px, rgba(255, 255, 255, 0.02) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(255, 255, 255, 0.02) 19px, rgba(255, 255, 255, 0.02) 20px);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    padding: 0;
    position: relative;
}

.container {
    max-width: 1400px;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar-custom {
    background: transparent;
    border: none;
    padding: 1.2rem 0;
    backdrop-filter: blur(8px);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.forensic-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
}

.brand-name {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-text {
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link-text:hover {
    color: var(--text-primary);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    color: var(--text-primary);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% - 0.5rem);
    right: 0;
    background: var(--bg-card-light);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding-top: 0.5rem;
    min-width: 220px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-indigo);
}

.nav-dropdown-item i {
    font-size: 0.875rem;
    width: 1rem;
    text-align: center;
}

/* Hero Section - Compact */
.hero-section-compact {
    text-align: center;
    margin: 1rem auto 0.75rem;
    padding: 0 20px;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-headline-compact {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.01em;
}

.hero-subheadline-compact {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.hero-links {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero-sample-link {
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: underline;
    text-decoration-color: #475569;
    text-underline-offset: 3px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.hero-sample-link:hover {
    color: white;
    text-decoration-color: #64748b;
}

.hero-sample-link i {
    font-size: 0.875rem;
}

/* Live Network Activity Dashboard */
.network-stats-dashboard {
    background: var(--bg-well);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.15);
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.2);
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-indigo);
}

.stat-icon.fraud {
    background: rgba(225, 29, 72, 0.1);
    border-color: rgba(225, 29, 72, 0.2);
}

.stat-icon.fraud i {
    color: var(--danger-color);
}

.stat-icon.savings {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-icon.savings i {
    color: var(--success-color);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
    font-weight: 500;
}

.stats-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.last-updated {
    font-family: 'Inter', sans-serif;
    color: #64748b;
}

/* Responsive: Stack stats on mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 2.5rem 0 3rem;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-indigo);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.testimonial-author {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
}

.author-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive: Stack testimonials on mobile */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Mode Selector (Segmented Control) */
.mode-selector-wrapper {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0 0.5rem;
}

.segmented-control {
    display: inline-flex;
    gap: 0.25rem;
    background: rgba(15, 23, 42, 0.8);
    padding: 0.25rem;
    border-radius: 9999px;
    border: 1px solid var(--border-subtle);
}

.segment-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.segment-tab:hover {
    color: var(--text-secondary);
}

.segment-tab.active {
    background: var(--accent-indigo);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.3);
}

.segment-tab i {
    font-size: 0.875rem;
}

.hero-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #818cf8;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hero-video-link:hover {
    color: #a5b4fc;
    gap: 12px;
}

.hero-video-link i {
    font-size: 0.875rem;
}

.beta-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    color: #34d399;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: help;
    transition: all 0.2s ease;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.15);
}

.beta-badge:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: var(--border-subtle);
    box-shadow: 0 0 16px rgba(52, 211, 153, 0.25);
}

/* Usage Counter */
.usage-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid var(--border-very-subtle);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    white-space: nowrap;
    margin-left: auto;
}

.usage-counter i {
    color: #cbd5e1;
    font-size: 1rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: #10b981;
}

.status-dot {
    width: 5px;
    height: 5px;
    background: #10b981;
    border-radius: 50%;
    animation: status-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes status-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.status-text {
    font-weight: 600;
    text-transform: uppercase;
}

/* Demo Video Link */
.demo-video-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #818cf8;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.demo-video-link i {
    font-size: 0.75rem;
}

.demo-video-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 56rem;
    background: #0f172a;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 10001;
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--border-very-subtle);
    color: #cbd5e1;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
    z-index: 10002;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-subtle);
    color: #ffffff;
}

.video-modal-content {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.video-modal-content iframe {
    position: relative;
    z-index: 2;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border: 1px solid var(--border-very-subtle);
    border-radius: 8px;
    z-index: 1;
}

.card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    box-shadow: none;
}

.card-title {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.section-header {
    color: var(--text-headers);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.upload-header label {
    color: var(--text-headers);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.upload-header .helper-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 4px;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Scenario Cards */
.scenario-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.scenario-card i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.scenario-card:hover {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
}

.scenario-card.active {
    background: #6366f1;
    border-color: #818cf8;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

.scenario-card.active i {
    color: white;
}

/* Rent Context Input */
.rent-input {
    background: var(--bg-well);
    border: 1px solid var(--border-very-subtle);
    color: var(--text-primary);
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s ease;
}

.rent-input:hover {
    border-color: var(--border-subtle);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.3) inset;
}

.rent-input:focus {
    background: var(--bg-well);
    border-color: var(--border-subtle);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5) inset;
    outline: none;
    color: var(--text-primary);
}

.rent-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.rent-prefix, .rent-suffix {
    background: var(--bg-card);
    border: 1px solid var(--border-very-subtle);
    color: var(--accent-indigo);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 14px 20px;
}

.rent-prefix {
    font-size: 1.25rem;
    border-right: none;
}

.rent-suffix {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-left: none;
}

.input-group {
    border-radius: 6px;
    overflow: hidden;
}

/* Compact Form Labels */
.form-label-compact {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
}

.input-label-micro {
    display: block;
    color: var(--text-muted);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
    font-family: 'Inter', sans-serif;
}

/* Joint Application Toggle Switch */
.vetting-context-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.joint-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(71, 85, 105, 0.3);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #64748b;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-indigo);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
    background-color: var(--accent-indigo);
}

.toggle-switch input:focus + .toggle-slider {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.rent-section {
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.input-compact {
    width: 100%;
    height: 2.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-very-subtle);
    color: var(--text-primary);
    padding: 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.input-compact:hover {
    border-color: var(--border-subtle);
    background: rgba(15, 23, 42, 0.7);
}

.input-compact:focus {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
    color: var(--text-primary);
}

.input-compact::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8125rem;
}

/* Context Inputs (Improved Contrast) */
.input-context {
    width: 100%;
    height: 2.5rem;
    background: #1e293b;
    border: 1px solid #475569;
    color: white;
    padding: 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.input-context:hover {
    border-color: #64748b;
    background: #1e293b;
}

.input-context:focus {
    background: #1e293b;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
    color: white;
}

.input-context::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.8125rem;
}

/* Grid Utilities (Tailwind-like) */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-3 {
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.dropzone {
    border: 1px solid var(--border-very-subtle);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-well);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropzone:hover {
    border-color: var(--border-subtle);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5) inset;
}

.dropzone.dragover {
    border-color: var(--border-subtle);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.7) inset;
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.dropzone-content i {
    font-size: 3rem;
    color: var(--accent-indigo);
    margin-bottom: 15px;
}

.dropzone-content p {
    margin: 10px 0;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.dropzone-content small {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.file-info i {
    font-size: 2rem;
    color: var(--accent-indigo);
}

.file-info .filename {
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.remove-file {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.remove-file:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
}

.form-label {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--accent-indigo);
    margin-right: 6px;
}

.helper-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5;
}

.upload-header {
    min-height: 80px;
    margin-bottom: 15px;
}

.tenant-type-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid var(--border-subtle);
    color: var(--accent-indigo);
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #5855E5 100%);
    border: none;
    padding: 16px 48px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    font-size: 0.95rem;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #5855E5 0%, #4C49D6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.btn-primary:disabled {
    opacity: 0.5;
    background: var(--border-subtle);
    border-color: var(--border-subtle);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--bg-card-light);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.progress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.progress-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.progress-content h3 {
    color: var(--accent-indigo);
    font-family: 'Inter', sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-indigo), var(--accent-purple));
    width: 0;
    transition: width 0.3s ease;
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.6);
}

.progress-status {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin-top: 15px;
}

.traffic-light-container {
    padding: 30px;
}

.status-circle {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-very-subtle);
    position: relative;
}

.status-circle.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--border-subtle);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.status-circle.green::before {
    content: '✓';
    font-size: 4rem;
    color: var(--success-color);
    font-weight: bold;
}

.status-circle.red {
    background: rgba(225, 29, 72, 0.1);
    border-color: var(--border-subtle);
    box-shadow: 0 0 30px rgba(225, 29, 72, 0.3);
    animation: alert-pulse 2s infinite;
}

.status-circle.red::before {
    content: '⚠';
    font-size: 4rem;
    color: var(--danger-color);
}

@keyframes alert-pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(225, 29, 72, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(225, 29, 72, 0.6);
    }
}

#status-text {
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#status-text.green {
    color: var(--success-color);
}

#status-text.red {
    color: var(--danger-color);
}

.results-card.alert-mode {
    border: 1px solid var(--border-subtle);
    box-shadow: 0 0 40px rgba(225, 29, 72, 0.3);
}

.findings-section h5,
.metadata-section h5 {
    color: var(--text-headers);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 12px;
}

.findings-list {
    list-style: none;
    padding: 0;
}

.findings-list li {
    padding: 14px 18px;
    margin: 10px 0;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.findings-list li:has(❌), .findings-list li:has(⚠️) {
    border-left-color: var(--border-subtle);
    background: rgba(225, 29, 72, 0.1);
    color: #fca5a5;
}

.findings-list li:has(✓) {
    border-left-color: var(--border-subtle);
    background: rgba(16, 185, 129, 0.1);
    color: #86efac;
}

/* NETWORK HIT CRITICAL ALERT - Highest priority alert */
.findings-list li.finding-critical {
    border-left: 3px solid #dc2626;
    background: rgba(220, 38, 38, 0.15);
    color: #fca5a5;
    font-weight: 600;
    padding: 16px 18px;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.2);
}

/* Override System Styles */
.finding-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.finding-text {
    flex: 1;
    color: #e2e8f0;
}

.finding-text.overridden {
    color: #60a5fa !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.override-badge {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #60a5fa;
    text-decoration: none;
}

.override-badge i {
    margin-right: 4px;
}

.btn-override,
.btn-undo-override {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-override {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-override:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
}

.btn-undo-override {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-undo-override:hover {
    background: rgba(148, 163, 184, 0.25);
    border-color: rgba(148, 163, 184, 0.5);
}

.metadata-section .card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
}

.metadata-section .card-subtitle {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}

.metadata-item {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-very-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #cbd5e1; /* text-slate-300 for better contrast */
}

.metadata-item:last-child {
    border-bottom: none;
}

/* Behavioral Intelligence Section */
.behavioral-intelligence-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-subtle);
}

.behavioral-intelligence-section h5 {
    color: var(--text-headers);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 12px;
}

.financial-health-card,
.behavioral-analysis-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
}

.financial-health-card h6,
.behavioral-analysis-card h6 {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rent-burden-meter {
    padding: 1rem 0;
}

.meter-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

.affordability-value {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.progress-meter-container {
    height: 32px;
    background: var(--bg-well);
    border: 1px solid var(--border-very-subtle);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.progress-meter-fill {
    height: 100%;
    transition: width 0.8s ease, background-color 0.3s ease;
    position: relative;
}

.progress-meter-fill.safe {
    background: linear-gradient(90deg, var(--success-color), #34d399);
}

.progress-meter-fill.caution {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.progress-meter-fill.danger {
    background: linear-gradient(90deg, var(--danger-color), #f87171);
}

.meter-scale {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Inter', monospace;
}

.scale-marker.safe {
    color: var(--success-color);
}

.scale-marker.caution {
    color: #f59e0b;
}

.behavioral-alert {
    padding: 1rem;
    margin: 0.75rem 0;
    border-left: 3px solid;
    background: var(--bg-well);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.behavioral-alert.warning {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.behavioral-alert.danger {
    border-color: var(--danger-color);
    background: rgba(225, 29, 72, 0.1);
}

.behavioral-alert.success {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.behavioral-alert-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.behavioral-alert-text {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.metadata-item strong {
    color: var(--accent-indigo);
    font-weight: 600;
}

.badge {
    font-family: 'Inter', sans-serif;
    padding: 5px 12px;
    font-weight: 600;
}

.alert {
    display: none !important;
}

/* Site Footer */
.site-footer {
    width: 100%;
    background: var(--bg-page);
    border-top: 1px solid var(--border-subtle);
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Row 1: Agency CTA (Business Tier) */
.agency-cta {
    text-align: center;
}

.agency-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.agency-cta .api-link {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.agency-cta .api-link:hover {
    color: #a5b4fc;
}

.agency-cta .api-link i {
    transition: transform 0.2s ease;
}

.agency-cta .api-link:hover i {
    transform: translateX(3px);
}

/* Row 2: Legal Bar (Trust Tier) */
.legal-bar {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.legal-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.copyright-text {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.gdpr-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gdpr-badge i {
    font-size: 0.7rem;
}

.data-note {
    color: #64748b;
}

.footer-manifesto-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-manifesto-link:hover {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .legal-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Feedback Button */
.btn-link-subtle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-link-subtle:hover {
    color: var(--text-primary);
}

.btn-link-subtle i {
    margin-right: 6px;
    font-size: 0.75rem;
}

/* Feedback Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.modal-content-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-header-custom {
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.btn-close-custom {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-custom:hover {
    color: var(--text-primary);
}

.modal-body-custom {
    padding: 24px;
}

.modal-body-custom .form-control {
    background: var(--bg-well);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    resize: vertical;
}

.modal-body-custom .form-control:focus {
    background: var(--bg-well);
    border-color: var(--border-subtle);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.2);
}

.modal-body-custom .form-control::placeholder {
    color: var(--text-muted);
}

.modal-footer-custom {
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 80px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.toast-notification i {
    font-size: 1.25rem;
}

/* Toast Notification Variants (Bulletproofing) */
.toast-notification.toast-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}

.toast-notification.toast-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
}

.toast-notification.toast-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.5);
}

/* Validation Warning */
.validation-warning {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.validation-warning i {
    font-size: 1.1rem;
}

/* Verification Checks Section */
.verification-checks-section h5 {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
}

.verification-card {
    background: var(--bg-well);
    border: 1px solid var(--border-very-subtle);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.verification-card h6 {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.verification-content {
    font-family: 'Inter', sans-serif;
}

.verification-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.verification-status.pass {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success-color);
    color: var(--success-color);
}

.verification-status.fail {
    background: rgba(225, 29, 72, 0.1);
    border-left: 3px solid var(--danger-color);
    color: var(--danger-color);
}

.verification-status.not-checked {
    background: rgba(100, 116, 139, 0.1);
    border-left: 3px solid #64748b;
    color: #64748b;
}

.verification-detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-page);
    border-radius: 4px;
    line-height: 1.6;
}

.verification-detail strong {
    color: var(--accent-indigo);
    font-weight: 600;
}


@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-section-compact {
        margin: 1.5rem auto;
    }
    
    .hero-headline-compact {
        font-size: 1.25rem;
    }
    
    .hero-subheadline-compact {
        font-size: 0.875rem;
    }
    
    .segment-tab {
        padding: 0.375rem 0.875rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }
    
    .segment-tab i {
        font-size: 0.75rem;
    }
    
    .mode-selector-wrapper {
        margin: 1rem 0 0.75rem;
    }
    
    /* Mobile-optimized dropzones with larger touch targets */
    .dropzone {
        padding: 50px 20px;
        min-height: 200px;
        cursor: pointer;
    }
    
    .dropzone-content {
        width: 100%;
    }
    
    .dropzone-content i {
        font-size: 3rem;
    }
    
    .dropzone-content p {
        font-size: 1.1rem;
        margin: 15px 0;
    }
    
    .dropzone-content small {
        font-size: 0.9rem;
    }
    
    /* Increase spacing between stacked buckets on mobile */
    .col-md-6.mb-4 {
        margin-bottom: 2rem !important;
    }
    
    .status-circle {
        width: 100px;
        height: 100px;
    }
    
    .status-circle.green::before,
    .status-circle.red::before {
        font-size: 3rem;
    }
    
    .modal-content-custom {
        width: 95%;
        margin: 20px;
    }
    
    .toast-notification {
        right: 12px;
        left: 12px;
        bottom: 70px;
    }
}

/* ============================================
   CONSOLIDATED VERDICT PANEL
   ============================================ */
.consolidated-verdict-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.verdict-column {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.verdict-column:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.verdict-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.4);
}

.verdict-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.verdict-status {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* GREEN (CLEAN/LOW RISK) */
.verdict-column.status-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
}

.verdict-column.status-green .verdict-icon {
    color: #10b981;
}

.verdict-column.status-green .verdict-status {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* RED (FRAUD/HIGH RISK) */
.verdict-column.status-red {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(190, 18, 60, 0.1) 100%);
    border: 2px solid rgba(225, 29, 72, 0.4);
}

.verdict-column.status-red .verdict-icon {
    color: #e11d48;
}

.verdict-column.status-red .verdict-status {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* AMBER (WARNINGS) */
.verdict-column.status-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.verdict-column.status-amber .verdict-icon {
    color: #f59e0b;
}

.verdict-column.status-amber .verdict-status {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .verdict-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consolidated-verdict-panel {
        padding: 1.5rem 1rem;
    }
    
    .verdict-column {
        padding: 1.25rem 1rem;
    }
    
    .verdict-icon {
        font-size: 2rem;
    }
    
    .verdict-status {
        font-size: 0.95rem;
        padding: 0.6rem 0.8rem;
    }
}
