        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --border-primary: #e2e8f0;
            --border-secondary: #f1f5f9;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-tertiary: #64748b;
            --accent-primary: #0070d8;
            --accent-primary-hover: #005cb6;
            --accent-positive: #10B981;
            --accent-negative: #EF4444;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.06);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            
            --strata-blue-50: #f0f7ff;
            --strata-blue-100: #e0eefe;
            --strata-blue-600: #0083f1;
            --strata-blue-700: #0070d8;
            --strata-blue-800: #005cb6;
            --strata-blue-950: #00315e;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Header */
        .app-header {
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-primary);
            backdrop-filter: blur(8px);
            background-color: color-mix(in srgb, var(--bg-primary) 85%, transparent);
            position: sticky;
            top: 0;
            z-index: 40;
        }

        .header-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 2rem;
            height: 2rem;
            background: var(--strata-blue-800);
            border-radius: 0.375rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
        }

        .logo-icon i {
            color: var(--strata-blue-100);
            font-size: 1.125rem;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .nav-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            padding: 0.625rem 1rem;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            position: relative;
        }

        .nav-link:hover {
            color: var(--accent-primary);
            background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
            transform: translateY(-1px);
        }

        .nav-link.active {
            color: var(--accent-primary);
            background: color-mix(in srgb, var(--accent-primary) 12%, transparent);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 1.5rem;
            height: 2px;
            background: var(--accent-primary);
            border-radius: 1px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            padding: 0.75rem;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 1.25rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-btn:hover {
            background: var(--bg-secondary);
        }

        .mobile-menu-btn:active {
            background: var(--bg-tertiary);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            backdrop-filter: blur(2px);
        }

        /* Mobile Navigation Menu */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 280px;
            max-width: 85vw;
            background: var(--bg-primary);
            z-index: 999;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
            flex-direction: column;
            overflow-y: auto;
        }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.25rem;
            border-bottom: 1px solid var(--border-primary);
            background: var(--bg-secondary);
        }

        .mobile-nav-title {
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--text-primary);
        }

        .mobile-nav-close {
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            color: var(--text-secondary);
            font-size: 1.25rem;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-nav-close:hover {
            background: var(--bg-tertiary);
            color: var(--text-primary);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding: 0.75rem 0;
            flex: 1;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.5rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.15s ease;
            border-left: 3px solid transparent;
        }

        .mobile-nav-link:hover {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .mobile-nav-link.active {
            background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
            color: var(--accent-primary);
            border-left-color: var(--accent-primary);
            font-weight: 600;
        }

        .mobile-nav-link i {
            width: 1.25rem;
            text-align: center;
            font-size: 1rem;
        }

        /* Mobile Auth Section */
        .mobile-nav-auth {
            padding: 1rem 1.25rem;
            border-top: 1px solid var(--border-primary);
            background: var(--bg-secondary);
        }

        .mobile-auth-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.875rem 1rem;
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-auth-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 112, 216, 0.3);
        }

        .mobile-user-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .mobile-user-details {
            display: flex;
            flex-direction: column;
            gap: 0.125rem;
        }

        .mobile-user-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9375rem;
        }

        .mobile-user-email {
            font-size: 0.8125rem;
            color: var(--text-tertiary);
        }

        .mobile-signout-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.75rem 1rem;
            background: var(--bg-primary);
            color: var(--text-secondary);
            border: 1px solid var(--border-primary);
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mobile-signout-btn:hover {
            background: var(--bg-tertiary);
            color: var(--text-primary);
            border-color: var(--border-primary);
        }

        /* Mobile responsive styles for header */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                order: 3;
            }

            .mobile-nav-overlay {
                display: block;
            }

            .mobile-nav {
                display: flex;
            }

            .nav-desktop {
                display: none;
            }

            .auth-desktop {
                display: none;
            }

            .header-content {
                height: 3.5rem;
            }

            .logo-text {
                font-size: 1.125rem;
            }

            .logo-icon {
                width: 1.75rem;
                height: 1.75rem;
            }

            .logo-icon i {
                font-size: 1rem;
            }
        }

        /* Cards */
        .card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-primary);
            border-radius: 0.75rem;
            box-shadow: var(--shadow-sm);
        }

        /* Main Container */
        .main-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem;
        }

        @media (min-width: 640px) {
            .main-container {
                padding: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .main-container {
                padding: 2rem;
            }
        }

        /* Hero Section */
        .hero-section {
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            border-radius: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-primary);
        }

        .hero-content {
            padding: 4rem 2rem;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }

        @media (min-width: 768px) {
            .hero-content {
                padding: 5rem 3rem;
                min-height: 60vh;
            }
        }

        /* Statistics Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: white;
            border-radius: 0.75rem;
            padding: 1.25rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-primary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-primary);
            border-radius: 0.75rem 0.75rem 0 0;
        }

        .stat-card:nth-child(1)::before { background: #0070d8; }
        .stat-card:nth-child(2)::before { background: #059669; }
        .stat-card:nth-child(3)::before { background: #d97706; }
        .stat-card:nth-child(4)::before { background: #dc2626; }
        .stat-card:nth-child(5)::before { background: #7c3aed; }
        .stat-card:nth-child(6)::before { background: #0891b2; }
        .stat-card:nth-child(7)::before { background: #65a30d; }
        .stat-card:nth-child(8)::before { background: #ea580c; }

        .stat-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            color: white;
        }

        .stat-card:nth-child(1) .stat-icon { background: #0070d8; }
        .stat-card:nth-child(2) .stat-icon { background: #059669; }
        .stat-card:nth-child(3) .stat-icon { background: #d97706; }
        .stat-card:nth-child(4) .stat-icon { background: #dc2626; }
        .stat-card:nth-child(5) .stat-icon { background: #7c3aed; }
        .stat-card:nth-child(6) .stat-icon { background: #0891b2; }
        .stat-card:nth-child(7) .stat-icon { background: #65a30d; }
        .stat-card:nth-child(8) .stat-icon { background: #ea580c; }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
            line-height: 1;
            font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
        }

        @media (min-width: 768px) {
            .stat-value {
                font-size: 1.875rem;
            }
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .stat-label {
                font-size: 0.875rem;
            }
        }

        /* Controls Section */
        .controls-section {
            background: var(--bg-tertiary);
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-primary);
        }

        .controls-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            align-items: end;
        }

        @media (min-width: 768px) {
            .controls-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
                gap: 1rem;
            }
        }

        .control-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .control-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border-primary);
            border-radius: 0.5rem;
            font-size: 0.875rem;
            background: white;
            color: var(--text-primary);
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
            -webkit-appearance: none;
            appearance: none;
        }

        .control-input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(0, 112, 216, 0.1);
        }

        /* Ensure select dropdown options are visible */
        .control-input option {
            background: white;
            color: var(--text-primary);
            padding: 0.5rem;
            font-size: 0.875rem;
        }

        .control-input:focus option {
            background: white;
            color: var(--text-primary);
        }

        /* For webkit browsers, ensure dropdown is visible */
        .control-input:focus::-webkit-listbox {
            background: white;
            border: 1px solid var(--border-primary);
            border-radius: 0.5rem;
            box-shadow: var(--shadow-md);
            z-index: 1000;
        }

        /* Additional dropdown styling for better visibility */
        .control-input {
            position: relative;
            z-index: 1;
        }

        .control-input:focus {
            z-index: 1000;
        }

        /* Ensure dropdown options are visible on all browsers */
        .control-input option:hover,
        .control-input option:focus,
        .control-input option:active,
        .control-input option:checked {
            background: var(--accent-primary) !important;
            color: white !important;
        }

        /* For Firefox */
        .control-input:-moz-focusring {
            color: transparent;
            text-shadow: 0 0 0 var(--text-primary);
        }

        /* For IE/Edge */
        .control-input::-ms-expand {
            display: none;
        }

        @media (max-width: 768px) {
            .controls-section {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
            }
            
            .controls-grid {
                gap: 1.25rem;
            }
            
            .control-input {
                padding: 0.875rem 1rem;
                font-size: 16px; /* Prevents zoom on iOS */
            }
            
            .btn-primary {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
                width: 100%;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-sm);
            height: 48px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 112, 216, 0.2);
        }

        .btn-secondary {
            background: var(--bg-primary);
            color: var(--text-primary);
            border: 2px solid var(--border-primary);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: var(--shadow-sm);
            height: 48px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .btn-secondary:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            background-color: color-mix(in srgb, var(--accent-primary) 5%, transparent);
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        /* View Details Button - Professional Theme Styling */
        .btn-details {
            background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-hover) 100%);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.375rem;
            box-shadow: var(--shadow-sm);
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            white-space: nowrap;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            min-height: 36px;
        }

        .btn-details:hover {
            background: linear-gradient(135deg, var(--accent-primary-hover) 0%, var(--strata-blue-800) 100%);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .btn-details:active {
            transform: translateY(0);
        }

        .btn-details:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 112, 216, 0.3);
        }

        .btn-details i {
            font-size: 0.75rem;
        }

        @media (max-width: 640px) {
            .btn-details {
                padding: 0.625rem 0.875rem;
                font-size: 0.8rem;
                min-height: 40px;
            }
        }

        /* Charts Placeholder - Removed as requested */

        /* Table Section */
        .table-card {
            background: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-primary);
        }

        .table-header {
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            padding: 1.5rem 2rem;
            color: white;
        }

        .table-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .table-title {
                font-size: 1.5rem;
            }
        }

        .table-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        .table-container::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        .table-container::-webkit-scrollbar-track {
            background: var(--bg-secondary);
            border-radius: 4px;
        }
        
        .table-container::-webkit-scrollbar-thumb {
            background: var(--border-primary);
            border-radius: 4px;
        }
        
        .table-container::-webkit-scrollbar-thumb:hover {
            background: var(--text-tertiary);
        }

        .table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.75rem;
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
            table-layout: fixed;
            min-width: 420px;
        }

        .table th {
            background: var(--bg-tertiary);
            color: var(--text-secondary);
            padding: 1rem 0.75rem;
            text-align: left;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            border-bottom: 1px solid var(--border-primary);
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        /* Sortable header styles */
        .sortable-header {
            transition: all 0.2s ease;
            position: relative;
        }

        .sortable-header:hover {
            background: color-mix(in srgb, var(--accent-primary) 10%, var(--bg-tertiary));
            color: var(--accent-primary);
        }

        .sortable-header:active {
            background: color-mix(in srgb, var(--accent-primary) 15%, var(--bg-tertiary));
        }

        .table td {
            padding: 1rem 0.75rem;
            border-bottom: 1px solid var(--border-secondary);
            vertical-align: middle;
            color: var(--text-secondary);
        }

        .table tbody tr:hover {
            background: var(--bg-secondary);
        }

        .table tbody tr:nth-child(even) {
            background: rgba(248, 250, 252, 0.5);
        }

        /* Clickable Row Styles */
        .clickable-row,
        .clickable-row td,
        .clickable-row th,
        .clickable-row * {
            cursor: pointer !important;
        }

        /* Mobile clickable row styles */
        @media (max-width: 640px) {
            .clickable-row:hover {
                background: color-mix(in srgb, var(--accent-primary) 8%, var(--bg-secondary)) !important;
            }
            
            /* Make company links non-clickable on mobile */
            .clickable-row a {
                pointer-events: none !important;
                cursor: pointer !important; /* Keep the row clickable */
            }
        }

        /* MOBILE - 2 COLUMNS ONLY */
        @media (max-width: 640px) {
            /* Hide columns 3-8 (Offering, Type, Industry, Category, Sub-Cat, Location) */
            .table th:nth-child(n+3), .table td:nth-child(n+3) {
                display: none !important;
            }

            /* Show Filing Date (1), Company (2) */
            .table th:nth-child(1), .table td:nth-child(1),
            .table th:nth-child(2), .table td:nth-child(2) {
                display: table-cell !important;
            }

            .table-container {
                width: 100% !important;
                overflow-x: hidden !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            .table {
                width: 100% !important;
                display: table !important;
                table-layout: fixed !important;
                border-collapse: collapse !important;
            }

            .table thead { display: none !important; }

            .table tbody {
                width: 100% !important;
                display: block !important;
            }

            .table tr {
                display: flex !important;
                flex-direction: row !important;
                width: 100% !important;
                padding: 0.75rem 1rem !important;
                border-bottom: 1px solid var(--border-secondary) !important;
                align-items: center !important;
                gap: 0.75rem !important;
            }

            .table tr:active {
                background: var(--bg-secondary) !important;
            }

            /* Column 1: Filing Date - compact left side */
            .table td:nth-child(1) {
                width: auto !important;
                flex-shrink: 0 !important;
                padding: 0.375rem 0.625rem !important;
                font-size: 0.7rem !important;
                font-weight: 600 !important;
                background: var(--bg-tertiary) !important;
                color: var(--text-secondary) !important;
                border-radius: 0.25rem !important;
                text-align: center !important;
                border: none !important;
            }

            /* Column 2: Company - fills remaining space */
            .table td:nth-child(2) {
                flex: 1 !important;
                min-width: 0 !important;
                padding: 0 !important;
                border: none !important;
                background: transparent !important;
            }

            .company-cell {
                display: flex !important;
                flex-direction: column !important;
                gap: 0.125rem !important;
            }

            .company-name {
                font-size: 0.875rem !important;
                font-weight: 600 !important;
                color: var(--text-primary) !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }

            .company-subtitle {
                font-size: 0.7rem !important;
                color: var(--text-tertiary) !important;
            }
            
            /* Enhanced clickable row styling for mobile */
            .clickable-row {
                cursor: pointer !important;
                transition: background-color 0.2s ease !important;
            }
            
            .clickable-row:hover {
                background: color-mix(in srgb, var(--accent-primary) 8%, var(--bg-secondary)) !important;
            }
            
            .clickable-row:hover td:nth-child(1) {
            }
            
            .clickable-row:hover td:nth-child(2) {
            }
            
            .clickable-row:active {
            }
            
            /* Subtle left border on hover */
            .clickable-row:hover::after {
            }
            
            /* Subtle chevron indicator */
            .clickable-row::before {
            }
            
            .clickable-row:hover::before {
            }
        } /* End of mobile styles */
        
        /* DESKTOP - Non-clickable rows, Actions column */
        @media (min-width: 641px) {
            .table tbody tr {
                cursor: default !important;
                background: var(--bg-primary) !important;
            }
            
            .table tbody tr:hover {
                background: var(--bg-secondary) !important;
            }
        }

        .company-name {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
            font-size: 0.875rem;
        }

        .table-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.15s ease;
        }

        .table-link:hover {
            color: var(--accent-primary);
            text-decoration: underline;
        }

        .company-cik {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            font-family: 'SF Mono', monospace;
        }

        .company-metadata {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-top: 0.25rem;
        }

        .amount {
            font-weight: 600;
            font-family: 'SF Mono', monospace;
            font-size: 0.875rem;
        }

        .amount.large { color: var(--accent-positive); }
        .amount.medium { color: var(--accent-primary); }
        .amount.small { color: #F59E0B; }

        .badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.025em;
        }

        .badge.equity {
            background: rgba(59, 130, 246, 0.1);
            color: #1d4ed8;
        }

        .badge.debt {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
        }

        .badge.fund {
            background: rgba(16, 185, 129, 0.1);
            color: #047857;
        }

        .badge.other {
            background: var(--bg-tertiary);
            color: var(--text-tertiary);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem;
            background: var(--bg-secondary);
            flex-wrap: wrap;
        }

        .pagination button {
            padding: 0.5rem 0.75rem;
            margin: 0 0.125rem;
            border: 1px solid var(--border-primary);
            background: var(--bg-primary);
            color: var(--text-secondary);
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            min-height: 40px; /* Touch-friendly minimum */
            white-space: nowrap;
        }

        .pagination button:hover:not(:disabled) {
            background: var(--bg-secondary);
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .pagination button.current {
            background: var(--accent-primary);
            color: white;
            border-color: var(--accent-primary);
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            color: var(--text-tertiary);
        }
        
        /* Mobile pagination adjustments */
        @media (max-width: 640px) {
            .pagination {
                flex-wrap: wrap;
                gap: 0.25rem;
                justify-content: center;
            }
            
            .pagination button {
                padding: 0.5rem;
                margin: 0;
                font-size: 0.75rem;
                min-width: 40px;
                justify-content: center;
            }
            
            .pagination button .hidden {
                display: none !important;
            }
        }

        /* Loading States */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            font-size: 1rem;
            color: var(--text-secondary);
        }

        .spinner {
            width: 2rem;
            height: 2rem;
            border: 2px solid var(--border-primary);
            border-top: 2px solid var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 0.75rem;
        }

        .no-data {
            text-align: center;
            padding: 4rem 2rem;
            margin: 2rem auto;
            max-width: 36rem;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-primary);
            border-radius: 0.5rem;
        }

        .no-data h3 {
            color: var(--text-primary);
            margin-bottom: 0.75rem;
            font-weight: 600;
            font-size: 1.125rem;
            letter-spacing: -0.01em;
        }

        .no-data p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .no-data p:last-child {
            margin-bottom: 0;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }



        /* Modal Styles - Fixed and Enhanced - DISABLED - Using filing detail page instead */
        /*
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        */

        .modal-content {
            background: white;
            border-radius: 0.75rem;
            max-width: 64rem;
            width: 100%;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
            color: white;
            padding: 1.5rem 2rem;
            flex-shrink: 0;
            position: relative;
        }

        .modal-header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .modal-subtitle {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .modal-subtitle-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-badges {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }

        .modal-badge {
            font-size: 0.75rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-weight: 500;
        }

        .modal-badge-link {
            text-decoration: none;
            color: inherit;
            transition: background 0.15s ease;
        }

        .modal-badge-link:hover {
            background: rgba(255, 255, 255, 0.35);
        }

        .modal-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-size: 1.25rem;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Absolute positioned close button */
        .modal-close-absolute {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: all 0.2s ease;
            font-size: 1.25rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .modal-close-absolute:hover {
            background: rgba(0, 0, 0, 0.5);
            color: rgba(255, 255, 255, 0.9);
            transform: scale(1.05);
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            flex: 1;
        }

        /* Financial Cards Grid */
        .financial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .financial-card {
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid;
        }

        .financial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .financial-card.offering {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            border-color: var(--border-primary);
        }

        .financial-card.sold {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            border-color: var(--border-primary);
        }

        .financial-card.remaining {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            border-color: var(--border-primary);
        }

        .financial-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .financial-card-label {
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-secondary);
        }

        .financial-card-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
            box-shadow: var(--shadow-md);
        }

        .financial-card.offering .financial-card-icon {
            background: var(--accent-positive);
        }

        .financial-card.sold .financial-card-icon {
            background: var(--accent-primary);
        }

        .financial-card.remaining .financial-card-icon {
            background: var(--text-secondary);
        }

        .financial-card-value {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            line-height: 1;
            font-family: 'SF Mono', monospace;
            color: var(--text-primary);
        }

        .financial-card-subtitle {
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.375rem;
            color: var(--text-secondary);
        }

        /* Info Cards Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: var(--bg-secondary);
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-sm);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .info-card-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            box-shadow: var(--shadow-md);
        }

        .info-card.company .info-card-icon {
            background: var(--accent-primary);
            color: white;
        }

        .info-card.filing .info-card-icon {
            background: var(--text-secondary);
            color: white;
        }

        .info-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .info-item {
            background: white;
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-primary);
            margin-bottom: 1.25rem;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-item-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .info-item-icon {
            width: 1.25rem;
            color: var(--text-tertiary);
            margin-right: 0.5rem;
        }

        .info-item-label {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .info-item-value {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.125rem;
        }

        .info-item-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 700;
            background: var(--bg-tertiary);
            color: var(--text-secondary);
        }

        .metadata-badge {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            background: color-mix(in srgb, var(--accent-positive) 15%, transparent);
            color: var(--accent-positive);
            padding: 0.25rem 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-left: auto;
        }

        .metadata-badge i {
            font-size: 0.875rem;
        }

        /* File Info Card */
        .file-info {
            background: var(--bg-tertiary);
            border-radius: 0.5rem;
            padding: 1rem;
            border: 1px solid var(--border-primary);
            margin-top: 2rem;
        }

        .file-info-header {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .file-info-icon {
            width: 2rem;
            height: 2rem;
            background: var(--text-secondary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            color: white;
            font-size: 0.875rem;
        }

        .file-info-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .file-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            font-size: 0.875rem;
        }

        .file-info-item-label {
            font-weight: 500;
            color: var(--text-tertiary);
        }

        .file-info-item-value {
            margin-top: 0.25rem;
            font-family: 'SF Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-secondary);
            background: white;
            padding: 0.5rem;
            border-radius: 0.25rem;
            word-break: break-all;
            border: 1px solid var(--border-primary);
        }

        .file-info-badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 500;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            border: 1px solid var(--border-primary);
        }

        /* Additional Details Section */
        .additional-details {
            background: var(--bg-secondary);
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid var(--border-primary);
            margin-top: 2rem;
            box-shadow: var(--shadow-sm);
        }

        .additional-details-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .additional-details-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: var(--accent-primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            color: white;
        }

        .additional-details-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .additional-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .additional-details-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
        }

        .detail-item-label {
            width: 8rem;
            flex-shrink: 0;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .detail-item-value {
            flex: 1;
            color: var(--text-primary);
            font-weight: 500;
        }

        .detail-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--accent-positive);
            color: white;
        }

        .status-indicators {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-primary);
        }

        .status-indicator {
            text-align: center;
        }

        .status-indicator-label {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            margin-bottom: 0.25rem;
        }

        .status-indicator-icon {
            width: 2rem;
            height: 2rem;
            margin: 0 auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
        }

        .status-indicator.positive .status-indicator-icon {
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent-positive);
        }

        .status-indicator.negative .status-indicator-icon {
            background: rgba(239, 68, 68, 0.1);
            color: var(--accent-negative);
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1024px) {
            .main-container {
                padding: 1.5rem;
            }
            
            .controls-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            /* Header now uses mobile menu, so keep it simple */
            .header-content {
                padding: 0 1rem;
                height: 3.5rem;
            }

            .logo-section {
                gap: 0.5rem;
            }

            .logo-text {
                font-size: 1.125rem;
            }

            .hero-content {
                padding: 3rem 1.5rem;
            }

            /* Hero section mobile styles */
            h1[style*="font-size: 3.75rem"] {
                font-size: 2.75rem !important;
            }

            p[style*="font-size: 1.375rem"] {
                font-size: 1.125rem !important;
            }

            /* Button adjustments */
            div[style*="gap: 1.25rem"] {
                gap: 1rem !important;
            }

            /* Stats row mobile adjustment */
            div[style*="gap: 3rem"] {
                gap: 2rem !important;
            }

            div[style*="font-size: 2.5rem"] {
                font-size: 2rem !important;
            }

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

            .table th,
            .table td {
                padding: 0.75rem 0.5rem;
                font-size: 0.75rem;
            }

            .modal-overlay {
                padding: 0.5rem;
            }

            .modal-content {
                max-height: 95vh;
            }

            .modal-header {
                padding: 1rem 1.5rem;
            }

            .modal-body {
                padding: 1.5rem;
                font-size: 0.9rem;
            }

            .modal-close {
                padding: 1rem !important;
                font-size: 1.125rem !important;
                touch-action: manipulation;
                -webkit-tap-highlight-color: transparent;
            }

            .financial-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 640px) {
            .header-content {
                height: 3.5rem;
                padding: 0 0.75rem;
            }

            .logo-text {
                font-size: 1rem;
            }

            .main-container {
                padding: 1rem;
            }

            .hero-content {
                padding: 2rem 1rem;
            }
            
            /* Hero section mobile styles */
            h1[style*="font-size: 3.75rem"] {
                font-size: 2.25rem !important;
            }
            
            p[style*="font-size: 1.375rem"] {
                font-size: 1rem !important;
            }
            
            /* Button adjustments */
            div[style*="gap: 1.25rem"] {
                flex-direction: column !important;
                gap: 0.75rem !important;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }
            
            /* Stats grid mobile */
            div[style*="gap: 3rem"] {
                gap: 1.5rem !important;
            }
            
            div[style*="font-size: 2.5rem"] {
                font-size: 1.75rem !important;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .controls-section {
                padding: 1rem;
            }
            
            .table {
                font-size: 0.75rem;
                border-collapse: separate;
                border-spacing: 0;
                width: 100%;
                table-layout: fixed;
                min-width: 420px;
            }
            
            .table th,
            .table td {
                padding: 0.5rem 0.25rem;
            }


            
            .btn-details {
                padding: 0.375rem 0.75rem;
                font-size: 0.75rem;
            }

            .financial-card-value {
                font-size: 2rem;
            }
            
            .modal-subtitle {
                flex-direction: column;
                gap: 0.75rem;
                align-items: flex-start;
            }
            
            .modal-badges {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            /* Header uses mobile menu - keep row layout */
            .header-content {
                height: 3rem;
                padding: 0 0.5rem;
            }

            .logo-icon {
                width: 1.5rem;
                height: 1.5rem;
            }

            .logo-icon i {
                font-size: 0.875rem;
            }

            .logo-text {
                font-size: 0.9375rem;
            }

            .mobile-menu-btn {
                padding: 0.5rem;
                font-size: 1.125rem;
            }

            .hero-content {
                padding: 1.5rem 1rem;
            }

            h1[style*="font-size: 3.75rem"] {
                font-size: 1.875rem !important;
                line-height: 1.2 !important;
            }

            p[style*="font-size: 1.375rem"] {
                font-size: 1rem !important;
                margin-bottom: 2rem !important;
            }

            /* Button mobile adjustments */
            div[style*="gap: 1.25rem"] {
                flex-direction: column !important;
                gap: 1rem !important;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 1rem !important;
                font-size: 1rem !important;
            }
            
            /* Stats mobile adjustments */
            div[style*="gap: 3rem"] {
                gap: 1.5rem !important;
                margin-top: 2rem !important;
            }
            
            div[style*="font-size: 2.5rem"] {
                font-size: 1.75rem !important;
            }
            
            .table-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .table {
                min-width: 600px;
            }


        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Alpine.js cloak */
        [x-cloak] {
            display: none !important;
        }

        /* Alpine.js transition utilities */
        .translate-x-full {
            transform: translateX(100%);
        }

        .translate-x-0 {
            transform: translateX(0);
        }

        /* Computing indicator */
        .computing-indicator {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: linear-gradient(45deg, #fef3c7, #fde68a);
            border: 1px solid #f59e0b;
            border-radius: 0.5rem;
            color: #92400e;
            font-weight: 600;
            font-size: 0.875rem;
            animation: pulse 2s infinite;
        }

        .computing-spinner {
            width: 1rem;
            height: 1rem;
            border: 2px solid transparent;
            border-top: 2px solid #f59e0b;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Modal transition classes */
        .modal-enter {
            transition: opacity 300ms ease-out, transform 300ms ease-out;
        }

        .modal-enter-start {
            opacity: 0;
            transform: scale(0.95);
        }

        .modal-enter-end {
            opacity: 1;
            transform: scale(1);
        }

        .modal-leave {
            transition: opacity 200ms ease-in, transform 200ms ease-in;
        }

        .modal-leave-start {
            opacity: 1;
            transform: scale(1);
        }

        .modal-leave-end {
            opacity: 0;
            transform: scale(0.95);
        }

        /* Enhanced sort icons */
        .sort-icon {
            margin-left: 0.5rem;
            opacity: 0.4;
            transition: opacity 0.2s ease;
        }
        
        .sortable-header:hover .sort-icon {
            opacity: 0.8;
        }
        
        .sort-icon.fa-sort-up,
        .sort-icon.fa-sort-down {
            opacity: 1;
            color: var(--accent-primary);
        }

        /* Table column width adjustments */
        .table th:nth-child(1), /* Filing Date */
        .table td:nth-child(1) {
            width: 110px !important;
        }
        
        .table th:nth-child(2), /* Company */
        .table td:nth-child(2) {
            width: 280px !important;
        }
        
        .table th:nth-child(3), /* Offering */
        .table td:nth-child(3) {
            width: 130px !important;
        }
        
        .table th:nth-child(4), /* Amount Sold - make smaller */
        .table td:nth-child(4) {
            width: 110px !important;
        }
        
        .table th:nth-child(5), /* Security Type - give more space */
        .table td:nth-child(5) {
            width: 120px !important;
            font-size: 0.75rem !important;
        }
        
        .table th:nth-child(6), /* Industry - make smaller */
        .table td:nth-child(6) {
            width: 100px !important;
            font-size: 0.75rem !important;
        }
        
        .table th:nth-child(7), /* Location - make bigger */
        .table td:nth-child(7) {
            width: 160px !important;
            font-size: 0.75rem !important;
        }
        
        .table th:nth-child(8), /* Investors - make bigger */
        .table td:nth-child(8) {
            width: 100px !important;
            text-align: center !important;
            font-size: 0.75rem !important;
        }

        /* Security Type Badges */
        .security-type-badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.025em;
            text-align: center;
            min-width: 60px;
        }

        .security-type-badge.equity {
            background: rgba(59, 130, 246, 0.1);
            color: #1d4ed8;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .security-type-badge.debt {
            background: rgba(245, 158, 11, 0.1);
            color: #d97706;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }

        .security-type-badge.fund {
            background: rgba(16, 185, 129, 0.1);
            color: #047857;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .security-type-badge.other {
            background: var(--bg-tertiary);
            color: var(--text-tertiary);
            border: 1px solid var(--border-primary);
        }

        /* Mobile notification banner - REMOVED (site is now mobile friendly) */
        .mobile-notification {
            display: none !important;
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Mobile notification popup - REMOVED (site is now mobile friendly) */
        .mobile-notification-popup {
            display: none !important;
        }

        /* Person Cards - Enhanced styling */
        .person-card {
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .person-card:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 112, 216, 0.15);
        }

        .person-card .hover-overlay {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .person-card:hover .hover-overlay {
            transform: translateY(0) !important;
        }

        /* Company Profile Button */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 0.5rem;
            background: var(--accent-primary);
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 112, 216, 0.2);
        }

        .btn-primary:hover {
            background: var(--strata-blue-700);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 112, 216, 0.3);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(0, 112, 216, 0.2);
        }

        /* Header Company Button */
        .header-company-btn {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .header-company-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .header-company-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .header-company-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .header-company-btn:hover::before {
            left: 100%;
        }

        /* Mobile Responsive Modal Header */
        @media (max-width: 768px) {
            .modal-header-content {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            
            .modal-header-content > div:first-child {
                flex: none;
            }
            
            .modal-header-content > div:first-child > div:first-child {
                flex-direction: row;
                align-items: center;
                gap: 1rem;
            }
            
            .header-company-btn {
                padding: 0.5rem 0.75rem;
                font-size: 0.75rem;
            }
            
            .header-company-btn .btn-text {
                display: inline;
            }
            
            .modal-close-absolute {
                top: 0.75rem;
                right: 0.75rem;
                padding: 0.5rem;
                font-size: 1rem;
            }
            
            .modal-title {
                font-size: 1.25rem;
                line-height: 1.3;
            }
            
            .modal-subtitle {
                flex-direction: column;
                gap: 0.25rem;
            }
            
            .modal-subtitle-item {
                font-size: 0.75rem;
            }
            
            .modal-badges {
                flex-wrap: wrap;
                gap: 0.25rem;
            }
            
            .modal-badge {
                font-size: 0.65rem;
                padding: 0.25rem 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .modal-header-content {
                padding: 1rem;
            }
            
            .modal-header-content > div:first-child > div:first-child {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .header-company-btn {
                padding: 0.5rem 0.75rem;
                min-width: auto;
                justify-content: center;
                font-size: 0.7rem;
            }
            
            .header-company-btn .btn-text {
                display: inline;
            }
            
            .modal-close {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 0.875rem;
            }
            
            .modal-body {
                padding: 1rem;
            }
            
            .modal-header {
                padding: 1rem;
            }
        }
        
        /* Additional mobile responsive styles */
        @media (max-width: 480px) {
            .modal-body {
                padding: 1rem;
            }

            .modal-header {
                padding: 1rem;
            }
        }

        /* FAQ Section Styles */
        .faq-section-home {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-primary);
        }

        .faq-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
        }

        .faq-section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .faq-view-all {
            font-size: 0.875rem;
            color: var(--accent-primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .faq-view-all:hover {
            text-decoration: underline;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1rem;
        }

        .faq-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-primary);
            border-radius: 0.75rem;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .faq-card:hover {
            border-color: var(--accent-primary);
            box-shadow: 0 4px 12px rgba(0, 112, 216, 0.08);
        }

        .faq-card-question {
            padding: 1rem 1.25rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
        }

        .faq-card-question h3 {
            font-size: 0.9375rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.4;
        }

        .faq-card-question i {
            color: var(--accent-primary);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            font-size: 0.75rem;
        }

        .faq-card.open .faq-card-question i {
            transform: rotate(180deg);
        }

        .faq-card-answer {
            padding: 0 1.25rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-card.open .faq-card-answer {
            padding: 0 1.25rem 1.25rem;
            max-height: 400px;
        }

        .faq-card-answer p {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
            .faq-section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

        /* Email Signup in Hero */
        .signup-form-inline {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: wrap;
            max-width: 450px;
            margin: 0 auto;
        }
        .signup-input-light {
            flex: 1;
            min-width: 220px;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-primary);
            border-radius: 0.5rem;
            font-size: 0.95rem;
            background: var(--bg-primary);
            color: var(--text-primary);
            outline: none;
            transition: all 0.2s;
        }
        .signup-input-light:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(0, 112, 216, 0.1);
        }
        .signup-btn-light {
            padding: 0.75rem 1.5rem;
            background: var(--accent-primary);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .signup-btn-light:hover {
            background: var(--accent-primary-hover);
        }
        .signup-btn-light:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        .signup-success-light {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #059669;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
        }

        /* Answer Capsule - for AI/LLM citation optimization */
        .answer-capsule {
            background: var(--bg-secondary);
            border-left: 4px solid var(--accent-primary);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 0 0.75rem 0.75rem 0;
        }
        .answer-capsule h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }
        .answer-capsule .direct-answer {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }
        .answer-capsule .source {
            font-size: 0.8125rem;
            color: var(--text-tertiary);
            margin-top: 1rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border-primary);
        }
        .answer-capsule a {
            color: var(--accent-primary);
            text-decoration: none;
        }
        .answer-capsule a:hover {
            text-decoration: underline;
        }
        /* Footer */
        .site-footer {
            margin-top: 3rem;
            padding: 2rem 0;
            border-top: 1px solid var(--border-primary);
            text-align: center;
            color: var(--text-tertiary);
            font-size: 0.875rem;
        }
        .site-footer a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .site-footer a:hover {
            color: var(--accent-primary);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .footer-divider {
            color: var(--border-primary);
        }
