              :root {
            /* Teal/Amber dual-accent palette for EHR */
            --bg-dark: #07101a;
            --bg-medium: #0f1a27;
            --bg-light: #182538;
            --surface-raised: #1e2d41;
            --border-color: rgba(20, 184, 166, 0.22);
            --border-soft: rgba(148, 163, 184, 0.12);
            --primary-accent: #14b8a6;
            --secondary-accent: #2dd4bf;
            --tertiary-accent: #5eead4;
            --warm-accent: #f59e0b;
            --warm-accent-soft: #fbbf24;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --positive-color: #22c55e;
            --negative-color: #f43f5e;
        }

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

        
        body {
            font-family: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 85% -10%, rgba(20, 184, 166, 0.12) 0%, transparent 55%),
                        radial-gradient(ellipse at 10% 90%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                        linear-gradient(180deg, rgba(148,163,184,0.02) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }


        .modal, .contact-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(9, 9, 11, 0.92);
            backdrop-filter: blur(12px);
        }

        .modal.show, .contact-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        .modal-content, .contact-modal-content {
            background: var(--bg-medium);
            padding: 48px;
            border-radius: 20px;
            width: 460px;
            max-width: 90vw;
            border: 1px solid var(--border-color);
            box-shadow: 0 25px 80px rgba(139,92,246,0.3);
        }

        
        .modal-header, .contact-modal-header {
            text-align: left;
            margin-bottom: 32px;
            border-left: 3px solid var(--primary-accent);
            padding-left: 16px;
            border-bottom: none;
            padding-bottom: 16px;
        }

        .modal-header h2, .contact-modal-header h2 {
            color: var(--text-primary);
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .modal-header p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .form-group, .contact-form-group {
            margin-bottom: 24px;
        }

        
        .form-group label, .contact-form-group label {
            display: block;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0px;
        }

        
        .form-group input, .contact-form-group input, .contact-form-group select, .contact-form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 15px;
            transition: all 0.3s ease-in-out;
            font-family: 'Inter', sans-serif;
        }

        
        .form-group input:focus, .contact-form-group input:focus, .contact-form-group select:focus, .contact-form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-accent);
            box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
        }
        
        .modal-buttons {
            display: flex;
            gap: 14px;
            margin-top: 32px;
        }

        
        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            border: none;
            text-transform: none;
            letter-spacing: 0px;
        }

        
        .btn-login, .contact-submit-btn {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
        }

        .btn-login:hover, .contact-submit-btn:hover {
            background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(20, 184, 166, 0.45);
        }

        .btn-cancel {
            background: var(--bg-light);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .btn-cancel:hover {
            background: var(--bg-dark);
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        .close-modal, .contact-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .close-modal:hover, .contact-close:hover {
            color: var(--secondary-accent);
        }

        
        .header {
            background: linear-gradient(180deg, rgba(10, 1, 24, 0.8) 0%, rgba(20, 184, 166, 0.3) 100%);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            backdrop-filter: blur(20px);
            z-index: 100;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 40px;
        }

        
        .logo {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 12px;
        }

        
        .brand-name {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-menu a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 600;
        }
        
        
        .nav-menu a::after {
            background: var(--secondary-accent);
        }

        .nav-menu a:hover {
            color: var(--primary-accent);
        }

        
        .nav-button {
            padding: 11px 22px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

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

        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
        }


        .market-stats {
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border-color);
            padding: 14px 0;
            font-size: 13px;
            color: var(--text-secondary);
        }

        
        .stat-item {
            gap: 10px;
            padding: 8px 16px;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            font-weight: 500;
        }

        .stat-positive { color: var(--positive-color); }
        .stat-negative { color: var(--negative-color); }


        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 90px 40px;
            position: relative;
            z-index: 1;
        }

        
        .page-title {
            font-size: 58px;
            font-weight: 900;
            margin-bottom: 18px;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
        }

        .page-subtitle {
            color: var(--text-secondary);
            margin-bottom: 60px;
            font-size: 19px;
            max-width: 700px;
            line-height: 1.7;
        }

        .page-subtitle a {
            color: var(--secondary-accent);
            text-decoration: none;
            font-weight: 600;
        }
        

        .tabs {
            gap: 12px;
            margin-bottom: 45px;
        }
        
        
        .tab {
            padding: 14px 28px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 700;
            border-radius: 12px;
        }

        
        .tab.active {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border-color: var(--secondary-accent);
            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
        }

        .tab:hover:not(.active) {
            background: var(--bg-medium);
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        
        .exchanges-table {
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        th {
            background: rgba(45, 212, 191, 0.06);
            padding: 22px;
            font-weight: 700;
            font-size: 12px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        td {
            padding: 22px;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
        }
        
        tr:hover {
            background: var(--bg-light);
        }

        
        .rank {
            font-weight: 800;
            font-size: 18px;
            color: var(--primary-accent);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }

        
        .exchange-logo {
            border-radius: 12px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
        }

        .exchange-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }
        
        
        .trading-volume {
            font-weight: 700;
            font-size: 16px;
            color: var(--secondary-accent);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }

        .liquidity-score {
            font-weight: 700;
            color: var(--primary-accent);
            font-size: 16px;
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }

        .weekly-visits, .markets-count, .coins-count, .fiat-supported {
            color: var(--text-secondary);
            font-weight: 500;
        }

        
        .volume-chart {
            background: var(--bg-light);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        
        .chart-line {
            background: linear-gradient(180deg, rgba(251, 113, 133, 0.5) 0%, rgba(251, 113, 133, 0.05) 100%);
        }

        .chart-line::before {
            background: var(--primary-accent);
        }
        
        .chart-red .chart-line {
            background: linear-gradient(180deg, rgba(251, 146, 60, 0.5) 0%, rgba(251, 146, 60, 0.05) 100%);
        }
        
        .chart-red .chart-line::before {
            background: var(--negative-color);
        }

        .footer {
            background: var(--bg-medium);
            border-top: 1px solid var(--border-color);
            margin-top: 90px;
        }
        
        .footer-section h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .footer-section a {
            color: var(--text-secondary);
            font-size: 15px;
        }
        
        .footer-section a:hover {
            color: var(--secondary-accent);
            padding-left: 6px;
        }
        
        .footer-bottom {
            background: var(--bg-dark);
            border-top: 1px solid var(--border-color);
        }

        .company-info p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .monitoring-section {
            background: var(--bg-medium);
            padding: 90px 32px;
        }

        .monitoring-title {
            font-size: 44px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .monitoring-subtitle {
            font-size: 19px;
            color: var(--text-secondary);
        }
        
        
        .monitoring-features li::before {
            content: '✓';
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
        }

        .content h2, .content h3 {
            color: var(--primary-accent);
        }

        .content a { 
            color: var(--secondary-accent); 
        }

        .disclaimer h4 {
            color: var(--negative-color);
        }

        .disclaimer p {
            color: var(--text-secondary);
        }

        /* New Header Styles */
        .header-new {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border-color);
        }

        .top-bar {
            background: var(--bg-medium);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .market-ticker {
            display: flex;
            gap: 16px;
            align-items: center;
            color: var(--text-secondary);
        }

        .ticker-item strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .ticker-separator {
            color: var(--border-color);
        }

        .top-bar-links {
            display: flex;
            gap: 24px;
        }

        .top-bar-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .top-bar-links a:hover {
            color: var(--primary-accent);
        }

        .main-nav {
            padding: 16px 0;
        }

        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
        }
        
        .logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .brand-text {
            font-size: 22px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .search-bar {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
        }

        .search-input {
            width: 100%;
            padding: 12px 16px 12px 48px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 15px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-accent);
            box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }

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

        .btn-account {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-account:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
        }

        /* New Main Content Styles */
        .main-content-new {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .hero-section {
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-description {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
        }

        .hero-stat {
            text-align: center;
        }

        .stat-num {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 600;
            margin-top: 8px;
        }

        .features-section {
            padding: 80px 0;
        }

        .section-heading {
            font-size: 40px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            color: var(--text-primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: var(--bg-medium);
            padding: 40px 32px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-accent);
            box-shadow: 0 12px 40px rgba(20, 184, 166, 0.2);
        }

        .feature-icon {
            font-size: 56px;
            margin-bottom: 24px;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 15px;
        }

        .platforms-section {
            padding: 80px 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .filter-tabs {
            display: flex;
            gap: 12px;
        }

        .filter-tab {
            padding: 10px 24px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-tab.active {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border-color: transparent;
        }

        .filter-tab:hover:not(.active) {
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 32px;
        }

        .platform-card {
            background: var(--bg-medium);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .platform-card:hover {
            border-color: var(--primary-accent);
            box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15);
        }

        .platform-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .platform-logo-wrapper {
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .platform-logo {
            max-width: 100%;
            max-height: 100%;
        }

        .platform-info {
            flex: 1;
        }

        .platform-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .platform-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(20, 184, 166, 0.15);
            color: var(--primary-accent);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        .platform-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 24px;
            padding: 20px;
            background: var(--bg-light);
            border-radius: 12px;
        }

        .platform-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stat-label-sm {
            font-size: 12px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .stat-value-sm {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }

        .trust-high {
            color: var(--positive-color);
        }

        .platform-btn {
            width: 100%;
            padding: 12px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .platform-btn:hover {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border-color: transparent;
        }

        .chart-section {
            padding: 80px 0;
        }

        .chart-container {
            height: 600px;
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .table-section {
            padding: 60px 0;
        }

        .table-section .filter-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
            justify-content: center;
        }
    
        .chart2 {
            height: 640px;
            margin: 45px 0;
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        
      


        .nav-left { display: flex; align-items: center; gap: 70px; }
        .logo-container { display: flex; align-items: center; gap: 14px; }
        .logo { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-weight: 900; color: white; font-size: 18px; }
        .nav-menu { display: flex; gap: 40px; list-style: none; }
        .nav-menu a { text-decoration: none; transition: all 0.3s ease; position: relative; }
        .nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -8px; left: 0; transition: width 0.3s ease; border-radius: 2px; }
        .nav-menu a:hover::after { width: 100%; }
        .nav-right { display: flex; align-items: center; gap: 16px; }
        .nav-button { text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; }
        .stats-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; gap: 40px; flex-wrap: wrap; }
        .exchanges-table { overflow: hidden; }
        table { width: 100%; border-collapse: collapse; }
        th:first-child { width: 60px; }
        tr:last-child td { border-bottom: none; }
        .exchange-info { display: flex; align-items: center; gap: 16px; }
        .exchange-logo img { max-width: 40px; max-height: 40px; border-radius: 12px; }
        .volume-chart { width: 100px; height: 45px; position: relative; overflow: hidden; }
        .chart-line { position: absolute; bottom: 2px; left: 2px; right: 2px; height: calc(100% - 4px); clip-path: polygon(0% 85%, 10% 70%, 20% 60%, 30% 45%, 40% 35%, 50% 25%, 60% 30%, 70% 40%, 80% 50%, 90% 45%, 100% 30%, 100% 100%, 0% 100%); }
        .chart-line::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; clip-path: polygon(0% 85%, 10% 70%, 20% 60%, 30% 45%, 40% 35%, 50% 25%, 60% 30%, 70% 40%, 80% 50%, 90% 45%, 100% 30%, 100% 0%, 0% 0%); }
        .chart-red .chart-line { clip-path: polygon(0% 30%, 10% 45%, 20% 55%, 30% 70%, 40% 80%, 50% 75%, 60% 85%, 70% 90%, 80% 85%, 90% 80%, 100% 75%, 100% 100%, 0% 100%); }
        .chart-red .chart-line::before { clip-path: polygon(0% 30%, 10% 45%, 20% 55%, 30% 70%, 40% 80%, 50% 75%, 60% 85%, 70% 90%, 80% 85%, 90% 80%, 100% 75%, 100% 0%, 0% 0%); }
        .footer-content { max-width: 1400px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; }
        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 16px; }
        .footer-bottom { padding: 32px; text-align: left; display: flex; justify-content: center; gap: 25px; }
        .logoFoot img { max-width: 100px; opacity: 0.8; }
        .contact-modal-body { padding: 32px; }
        .contact-form-row { display: flex; gap: 16px; }
        .contact-form-row .contact-form-group { flex: 1; }
        
        .contact-submit-btn {
            width: 100%;
            padding: 14px 24px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            border: none;
            text-transform: none;
            letter-spacing: 0px;
        }
        
        .contact-success-message {
            text-align: center;
            padding: 40px 20px;
        }
        
        .contact-success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: white;
            margin: 0 auto 24px;
        }
        
        .contact-success-message h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        
        .contact-success-message p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        .monitoring-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .monitoring-header { text-align: center; margin-bottom: 80px; }
        .monitoring-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .monitoring-features { list-style: none; padding: 0; margin: 0; }
        .monitoring-features li { display: flex; align-items: center; margin-bottom: 20px; font-size: 16px; }
        .monitoring-features li::before { content: '✓'; display: inline-block; width: 28px; height: 28px; color: #ffffff; border-radius: 50%; text-align: center; line-height: 28px; font-weight: bold; font-size: 16px; margin-right: 16px; flex-shrink: 0; }
        .disclaimer { background: rgba(0, 0, 0, 0.3); padding: 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; z-index: 1; }
        .disclaimer-content { max-width: 1400px; margin: 0 auto; padding: 0 35px; }

        /* ========== EHR LEGACY HEADER (kept for pages using .lb-*) ========== */
        
        .lb-header {
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .lb-topbar {
            background: var(--bg-medium);
            border-bottom: 1px solid var(--border-color);
            padding: 0 40px;
        }
        
        .lb-topbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 36px;
            font-size: 13px;
        }
        
        .lb-topbar-left {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
        }
        
        .lb-status-dot {
            width: 8px;
            height: 8px;
            background: var(--positive-color);
            border-radius: 50%;
            animation: lb-pulse 2s infinite;
        }
        
        @keyframes lb-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.9); }
        }
        
        .lb-topbar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .lb-topbar-right a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .lb-topbar-right a:hover {
            color: var(--primary-accent);
        }
        
        .lb-divider {
            color: var(--border-color);
        }
        
        .lb-navbar {
            background: rgba(9, 9, 11, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 0 40px;
        }
        
        .lb-navbar-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        
        .lb-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }
        
        .lb-brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(94, 234, 212, 0.08));
            border-radius: 10px;
            padding: 6px;
        }
        
        .lb-brand-icon svg {
            width: 100%;
            height: 100%;
        }
        
        .lb-brand-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }
        
        .lb-nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--bg-light);
            padding: 6px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .lb-nav-link {
            padding: 10px 22px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .lb-nav-link:hover {
            color: var(--text-primary);
            background: var(--bg-medium);
        }
        
        .lb-nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .lb-contact-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s;
        }
        
        .lb-contact-link:hover {
            color: var(--primary-accent);
        }
        
        .lb-cta-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-accent), #0d9488);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .lb-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        }
        
        /* ========== EHR LEGACY FEATURES SECTION ========== */
        
        .lb-features-section {
            padding: 80px 0;
        }
        
        .lb-features-intro {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .lb-features-intro h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .lb-features-intro p {
            font-size: 18px;
            color: var(--text-secondary);
        }
        
        .lb-features-layout {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 32px;
        }
        
        .lb-feature-main {
            background: linear-gradient(135deg, var(--bg-medium), var(--bg-light));
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 48px;
        }
        
        .lb-feature-badge {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(20, 184, 166, 0.15);
            color: var(--primary-accent);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 6px;
            margin-bottom: 20px;
        }
        
        .lb-feature-main h3 {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .lb-feature-main > p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }
        
        .lb-feature-stats {
            display: flex;
            gap: 24px;
        }
        
        .lb-fstat {
            background: var(--bg-dark);
            padding: 16px 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .lb-fstat span {
            display: block;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-accent);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .lb-feature-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .lb-feature-card {
            background: var(--bg-medium);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s;
        }
        
        .lb-feature-card:hover {
            border-color: var(--primary-accent);
            transform: translateX(8px);
        }
        
        .lb-fc-icon {
            font-size: 28px;
            margin-bottom: 14px;
        }
        
        .lb-feature-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
        .lb-feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        
        @media (max-width: 900px) {
            .lb-features-layout { grid-template-columns: 1fr; }
            .lb-nav-center { display: none; }
        }
        
        /* ========== EHR LEGACY HERO SECTION ========== */
        
        .lb-hero {
            padding: 80px 0 60px;
        }
        
        .lb-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .lb-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px 8px 12px;
            background: rgba(20, 184, 166, 0.1);
            border: 1px solid rgba(20, 184, 166, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-accent);
            margin-bottom: 28px;
        }
        
        .lb-tag-dot {
            width: 8px;
            height: 8px;
            background: var(--positive-color);
            border-radius: 50%;
            animation: lb-pulse 2s infinite;
        }
        
        .lb-hero-title {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -2px;
        }
        
        .lb-hero-title span {
            background: linear-gradient(135deg, var(--primary-accent), var(--tertiary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .lb-hero-desc {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 480px;
        }
        
        .lb-hero-actions {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .lb-hero-primary {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--primary-accent), #0d9488);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .lb-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
        }
        
        .lb-hero-secondary {
            padding: 16px 32px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .lb-hero-secondary:hover {
            border-color: var(--primary-accent);
            background: rgba(20, 184, 166, 0.05);
        }
        
        .lb-hero-trust {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        
        .lb-trust-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .lb-trust-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .lb-trust-label {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .lb-trust-divider {
            width: 1px;
            height: 40px;
            background: var(--border-color);
        }
        
        .lb-hero-visual {
            position: relative;
            height: 400px;
        }
        
        .lb-visual-card {
            background: var(--bg-medium);
            border: 1px solid var(--border-color);
            border-radius: 20px;
        }
        
        .lb-vc-main {
            position: absolute;
            top: 20px;
            right: 0;
            width: 320px;
            padding: 28px;
        }
        
        .lb-vc-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .lb-vc-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .lb-vc-badge {
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
        }
        
        .lb-vc-badge.positive {
            background: rgba(34, 197, 94, 0.15);
            color: var(--positive-color);
        }
        
        .lb-vc-price {
            font-size: 36px;
            font-weight: 900;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
            margin-bottom: 20px;
        }
        
        .lb-vc-chart {
            height: 80px;
        }
        
        .lb-vc-chart svg {
            width: 100%;
            height: 100%;
        }
        
        .lb-vc-float {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            animation: lb-float 3s ease-in-out infinite;
        }
        
        .lb-vc-1 {
            top: 0;
            left: 20px;
            animation-delay: 0s;
        }
        
        .lb-vc-2 {
            bottom: 40px;
            left: 0;
            animation-delay: 1.5s;
        }
        
        @keyframes lb-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .lb-float-icon {
            font-size: 28px;
        }
        
        .lb-float-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .lb-float-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .lb-float-sub {
            font-size: 12px;
            color: var(--text-secondary);
        }
        
        @media (max-width: 1000px) {
            .lb-hero-content { grid-template-columns: 1fr; text-align: center; }
            .lb-hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
            .lb-hero-actions { justify-content: center; }
            .lb-hero-trust { justify-content: center; }
            .lb-hero-visual { display: none; }
            .lb-hero-title { font-size: 44px; }
        }
        
        /* Showcase Section - Bento Grid Concept */
        .bd-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }
        
        .bd-showcase {
            padding: 80px 0 60px;
        }
        
        .bd-showcase-top {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .bd-badge-line {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }
        
        .bd-live-badge {
            padding: 6px 14px;
            background: rgba(34, 197, 94, 0.15);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #22c55e;
            letter-spacing: 0.5px;
            animation: pulse-badge 2s infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .bd-badge-text {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .bd-main-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.05;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: -3px;
        }
        
        .bd-title-accent {
            background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 50%, #5eead4 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bd-main-desc {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 36px;
        }
        
        .bd-action-row {
            display: flex;
            justify-content: center;
            gap: 16px;
        }
        
        .bd-action-main {
            padding: 16px 36px;
            background: linear-gradient(135deg, #14b8a6, #0d9488);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 24px rgba(20, 184, 166, 0.4);
        }
        
        .bd-action-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(20, 184, 166, 0.5);
        }
        
        .bd-action-alt {
            padding: 16px 36px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .bd-action-alt:hover {
            background: rgba(20, 184, 166, 0.1);
            border-color: var(--primary-accent);
        }
        
        /* Bento Grid */
        .bd-bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto auto;
            gap: 16px;
        }
        
        .bd-bento-card {
            background: rgba(18, 16, 28, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 20px;
            padding: 24px;
            transition: all 0.3s;
        }
        
        .bd-bento-card:hover {
            border-color: rgba(20, 184, 166, 0.3);
            transform: translateY(-4px);
        }
        
        .bd-bento-wide {
            grid-column: span 2;
        }
        
        .bd-bento-tall {
            grid-row: span 2;
        }
        
        .bd-card-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--primary-accent);
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }
        
        .bd-card-big {
            font-size: 48px;
            font-weight: 900;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
            letter-spacing: -2px;
            line-height: 1;
            margin-bottom: 8px;
        }
        
        .bd-card-trend {
            font-size: 13px;
            font-weight: 600;
        }
        
        .bd-card-trend.up { color: #22c55e; }
        .bd-card-trend.down { color: #ef4444; }
        
        /* Volume Card */
        .bd-volume-display {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .bd-volume-num {
            font-size: 56px;
            font-weight: 900;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
            letter-spacing: -3px;
            line-height: 1;
        }
        
        .bd-volume-unit {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary-accent);
            letter-spacing: 2px;
        }
        
        .bd-volume-sub {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }
        
        .bd-volume-bar {
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .bd-bar-fill {
            width: 78%;
            height: 100%;
            background: linear-gradient(90deg, #14b8a6, #2dd4bf);
            border-radius: 3px;
            animation: bar-grow 2s ease-out;
        }
        
        @keyframes bar-grow {
            from { width: 0; }
            to { width: 78%; }
        }
        
        /* Top Movers */
        .bd-mover {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .bd-mover:last-child {
            border-bottom: none;
        }
        
        .bd-mover-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .bd-mover-change {
            font-size: 14px;
            font-weight: 700;
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .bd-mover-change.up { color: #22c55e; }
        .bd-mover-change.down { color: #ef4444; }
        
        /* Feature Cards */
        .bd-bento-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 32px 20px;
        }
        
        .bd-feature-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }
        
        .bd-feature-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        
        .bd-feature-desc {
            font-size: 13px;
            color: var(--text-secondary);
        }
        
        /* Exchanges Section */
        .bd-exchanges {
            padding: 60px 0;
        }
        
        .bd-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }
        
        .bd-section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
        }
        
        .bd-tabs {
            display: flex;
            gap: 8px;
            background: var(--bg-medium);
            padding: 6px;
            border-radius: 10px;
        }
        
        .bd-tab {
            padding: 8px 20px;
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .bd-tab.active {
            background: var(--primary-accent);
            color: white;
        }
        
        .bd-tab:hover:not(.active) {
            color: var(--text-primary);
        }
        
        .bd-table-wrapper {
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        
        /* Features Section */
        .bd-features {
            padding: 80px 0;
        }
        
        .bd-features-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .bd-features-label {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(20, 184, 166, 0.1);
            color: var(--primary-accent);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 6px;
            margin-bottom: 16px;
        }
        
        .bd-features-title {
            font-size: 40px;
            font-weight: 900;
            color: var(--text-primary);
            letter-spacing: -1px;
        }
        
        .bd-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .bd-feature-item {
            background: var(--bg-medium);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 32px 28px;
            transition: all 0.3s;
        }
        
        .bd-feature-item:hover {
            border-color: var(--primary-accent);
            transform: translateY(-4px);
        }
        
        .bd-feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(94, 234, 212, 0.1));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary-accent);
        }
        
        .bd-feature-item h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        
        .bd-feature-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        /* Chart Section */
        .bd-chart-section {
            padding: 60px 0 80px;
        }
        
        .bd-chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        
        .bd-chart-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
        }
        
        .bd-chart-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .bd-price {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Menlo', monospace;
        }
        
        .bd-change {
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
        }
        
        .bd-change.positive {
            background: rgba(34, 197, 94, 0.15);
            color: var(--positive-color);
        }
        
        .bd-change.negative {
            background: rgba(239, 68, 68, 0.15);
            color: var(--negative-color);
        }
        
        .bd-chart-container {
            height: 500px;
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .bd-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .bd-hero {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .bd-hero-subtitle {
                max-width: 100%;
            }
            
            .bd-hero-cta {
                justify-content: center;
            }
            
            .bd-live-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .bd-stat-card {
                flex: 1;
                min-width: 140px;
            }
        }
        
        @media (max-width: 768px) {
            .bd-header {
                padding: 0 20px;
            }
            
            .bd-nav {
                display: none;
            }
            
            .bd-hero-title {
                font-size: 36px;
            }
            
            .bd-features-grid {
                grid-template-columns: 1fr;
            }
            
            .bd-section-header {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }
            
            .nav-container {
                flex-direction: column;
                gap: 20px;
                padding: 20px 24px;
            }
            .nav-menu, .tabs { display: none; }

            ul.nav-menu.loginBtn {
                display: none;
            }
            .page-title { font-size: 40px; }
            .monitoring-title { font-size: 36px; }
            .monitoring-content { grid-template-columns: 1fr; }
            .exchanges-table, .bd-table-wrapper {
                overflow-x: auto;
            }
        }

        /* =========================================================
           EHR — brand-new header, hero, about layout (2026 refresh)
           ========================================================= */

        .eh-shell {
            position: sticky;
            top: 0;
            z-index: 120;
            background: linear-gradient(180deg, rgba(7, 16, 26, 0.92) 0%, rgba(7, 16, 26, 0.72) 100%);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-soft);
        }

        .eh-ribbon {
            background: linear-gradient(90deg, rgba(20, 184, 166, 0.12), rgba(245, 158, 11, 0.08));
            border-bottom: 1px solid var(--border-soft);
            font-size: 12.5px;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
        }

        .eh-ribbon-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 30px;
            padding: 0 36px;
        }

        .eh-ribbon-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .eh-live-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--positive-color);
            box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
            animation: eh-pulse 2.2s ease-in-out infinite;
        }

        @keyframes eh-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.55; transform: scale(0.82); }
        }

        .eh-ribbon-ticker {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .eh-ticker-pill {
            font-family: 'JetBrains Mono', 'Menlo', monospace;
            font-size: 12px;
            padding: 2px 0;
            color: var(--text-secondary);
        }

        .eh-ticker-pill b {
            color: var(--text-primary);
            font-weight: 600;
            margin-right: 6px;
        }

        .eh-ticker-pill .up { color: var(--positive-color); }
        .eh-ticker-pill .down { color: var(--negative-color); }

        .eh-bar {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 36px;
            height: 76px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 48px;
        }

        .eh-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .eh-mark {
            position: relative;
            width: 42px;
            height: 42px;
            display: grid;
            place-items: center;
        }

        .eh-mark svg {
            width: 100%; height: 100%;
            filter: drop-shadow(0 4px 14px rgba(20, 184, 166, 0.35));
        }

        .eh-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .eh-brand-title {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 20px;
            letter-spacing: 0.14em;
            color: var(--text-primary);
        }

        .eh-brand-sub {
            margin-top: 4px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10.5px;
            letter-spacing: 0.3em;
            color: var(--primary-accent);
            text-transform: uppercase;
        }

        .eh-nav {
            justify-self: center;
            display: flex;
            gap: 4px;
            padding: 6px;
            border: 1px solid var(--border-soft);
            border-radius: 999px;
            background: rgba(15, 26, 39, 0.7);
        }

        .eh-nav a {
            padding: 9px 20px;
            border-radius: 999px;
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text-secondary);
            letter-spacing: 0.02em;
            transition: all .18s ease;
        }

        .eh-nav a:hover {
            color: var(--text-primary);
            background: rgba(20, 184, 166, 0.08);
        }

        .eh-nav a.current {
            color: var(--bg-dark);
            background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
            box-shadow: 0 6px 18px rgba(20, 184, 166, 0.28);
            font-weight: 700;
        }

        .eh-right {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .eh-search {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 14px;
            background: rgba(24, 37, 56, 0.6);
            border: 1px solid var(--border-soft);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 13px;
            font-family: 'JetBrains Mono', monospace;
            cursor: pointer;
            transition: all .2s ease;
        }

        .eh-search:hover {
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        .eh-search kbd {
            padding: 2px 6px;
            font-size: 10px;
            background: rgba(20, 184, 166, 0.12);
            border-radius: 4px;
            color: var(--primary-accent);
            border: 1px solid rgba(20, 184, 166, 0.22);
        }

        .eh-btn {
            padding: 11px 22px;
            background: linear-gradient(135deg, var(--warm-accent), #d97706);
            color: #1a1208;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 13.5px;
            letter-spacing: 0.03em;
            cursor: pointer;
            transition: all .22s ease;
        }

        .eh-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35);
        }

        @media (max-width: 960px) {
            .eh-nav { display: none; }
            .eh-search span { display: none; }
            .eh-bar { grid-template-columns: auto 1fr auto; gap: 18px; padding: 0 22px; }
        }

        /* ============ EHR HERO ============ */

        .eh-hero {
            position: relative;
            padding: 90px 36px 70px;
            overflow: hidden;
            /* break out of .bd-main (max-width:1200px) so the grid + glow fill the viewport */
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
        }

        .eh-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(148,163,184,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(148,163,184,0.05) 1px, transparent 1px);
            background-size: 56px 56px;
            mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, #000 35%, transparent 85%);
            -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 40%, #000 35%, transparent 85%);
            pointer-events: none;
        }

        .eh-hero::after {
            content: '';
            position: absolute;
            top: -160px;
            right: -160px;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 60%);
            filter: blur(20px);
            pointer-events: none;
        }

        .eh-hero-inner {
            position: relative;
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.25fr 0.85fr;
            gap: 72px;
            align-items: center;
            z-index: 1;
        }

        .eh-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 6px 14px 6px 6px;
            border: 1px solid var(--border-color);
            background: rgba(20, 184, 166, 0.08);
            border-radius: 999px;
            font-size: 12.5px;
            color: var(--tertiary-accent);
            margin-bottom: 26px;
            letter-spacing: 0.02em;
        }

        .eh-kicker-chip {
            padding: 3px 10px;
            background: var(--primary-accent);
            color: var(--bg-dark);
            border-radius: 999px;
            font-weight: 800;
            font-size: 10.5px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .eh-headline {
            font-family: 'Sora', sans-serif;
            font-size: clamp(42px, 5.2vw, 68px);
            line-height: 1.02;
            letter-spacing: -0.035em;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 22px;
        }

        .eh-headline em {
            font-style: normal;
            font-weight: 800;
            background: linear-gradient(110deg, var(--tertiary-accent) 10%, var(--primary-accent) 40%, var(--warm-accent-soft) 90%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .eh-headline em::after {
            content: '';
            position: absolute;
            left: 0; bottom: -4px;
            width: 100%; height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
            border-radius: 2px;
            opacity: 0.6;
        }

        .eh-lead {
            font-size: 17.5px;
            max-width: 540px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 34px;
        }

        .eh-cta-row {
            display: flex;
            gap: 14px;
            margin-bottom: 42px;
        }

        .eh-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 28px;
            background: linear-gradient(135deg, var(--primary-accent), #0d9488);
            color: #03261f;
            font-weight: 700;
            font-size: 15px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            letter-spacing: 0.01em;
            transition: all .25s ease;
        }

        .eh-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 34px rgba(20, 184, 166, 0.35);
        }

        .eh-cta-primary svg {
            width: 16px; height: 16px;
            transition: transform .25s ease;
        }

        .eh-cta-primary:hover svg { transform: translateX(4px); }

        .eh-cta-ghost {
            padding: 15px 26px;
            background: transparent;
            color: var(--text-primary);
            border: 1px dashed var(--border-color);
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all .25s ease;
        }

        .eh-cta-ghost:hover {
            border-color: var(--warm-accent);
            color: var(--warm-accent-soft);
            background: rgba(245, 158, 11, 0.06);
        }

        .eh-proof {
            display: flex;
            align-items: center;
            gap: 26px;
            color: var(--text-muted);
            font-size: 13px;
        }

        .eh-proof-avatars {
            display: flex;
        }
        .eh-proof-avatars span {
            width: 30px; height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-accent), var(--warm-accent));
            border: 2px solid var(--bg-dark);
            margin-left: -8px;
            display: grid;
            place-items: center;
            color: var(--bg-dark);
            font-size: 11px;
            font-weight: 800;
        }
        .eh-proof-avatars span:first-child { margin-left: 0; }

        /* Hero visual — vertical split column */
        .eh-hero-panel {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .eh-tile {
            background: linear-gradient(160deg, rgba(30, 45, 65, 0.9), rgba(15, 26, 39, 0.7));
            border: 1px solid var(--border-soft);
            border-radius: 18px;
            padding: 22px;
            position: relative;
            overflow: hidden;
        }

        .eh-tile::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
            opacity: 0.5;
        }

        .eh-tile-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10.5px;
            letter-spacing: 0.18em;
            color: var(--primary-accent);
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .eh-tile-big {
            font-family: 'Sora', sans-serif;
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .eh-tile-sub {
            font-size: 12.5px;
            color: var(--text-secondary);
        }

        .eh-tile-delta {
            display: inline-block;
            margin-top: 10px;
            padding: 3px 9px;
            border-radius: 6px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            font-weight: 700;
        }
        .eh-tile-delta.up { color: var(--positive-color); background: rgba(34, 197, 94, 0.1); }
        .eh-tile-delta.down { color: var(--negative-color); background: rgba(244, 63, 94, 0.1); }

        .eh-tile-spark {
            margin-top: 14px;
            height: 44px;
            display: block;
        }

        .eh-tile-wide {
            grid-column: 1 / -1;
        }

        .eh-tile-wide .eh-tile-big { font-size: 30px; }

        .eh-globe-ring {
            position: absolute;
            right: -40px; bottom: -40px;
            width: 170px; height: 170px;
            border-radius: 50%;
            border: 1px dashed rgba(20, 184, 166, 0.4);
            animation: eh-rotate 22s linear infinite;
        }
        .eh-globe-ring::before {
            content: '';
            position: absolute;
            inset: 14px;
            border-radius: 50%;
            border: 1px dashed rgba(245, 158, 11, 0.35);
        }
        @keyframes eh-rotate { to { transform: rotate(360deg); } }

        @media (max-width: 1000px) {
            .eh-hero-inner { grid-template-columns: 1fr; gap: 50px; }
            .eh-hero { padding: 60px 22px 50px; }
        }

        /* ============ EHR trust band under hero ============ */

        .eh-band {
            max-width: 1320px;
            margin: 10px auto 0;
            padding: 28px 36px;
            border-top: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .eh-band-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .eh-band-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        .eh-band-label {
            font-size: 12px;
            color: var(--text-muted);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .eh-band-item + .eh-band-item {
            border-left: 1px solid var(--border-soft);
            padding-left: 24px;
        }

        @media (max-width: 900px) {
            .eh-band { grid-template-columns: repeat(2, 1fr); }
            .eh-band-item + .eh-band-item { border-left: none; padding-left: 0; }
        }

        /* ============ Refreshed feature grid (home) ============ */

        .eh-feat-section {
            max-width: 1320px;
            margin: 0 auto;
            padding: 80px 36px;
        }

        .eh-feat-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: end;
            margin-bottom: 40px;
        }

        .eh-feat-head h2 {
            font-family: 'Sora', sans-serif;
            font-size: 38px;
            font-weight: 700;
            letter-spacing: -0.025em;
            color: var(--text-primary);
        }
        .eh-feat-head h2 span {
            color: var(--warm-accent);
        }

        .eh-feat-head p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
        }

        .eh-feat-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 16px;
        }

        .eh-feat-card {
            grid-column: span 4;
            background: var(--bg-medium);
            border: 1px solid var(--border-soft);
            border-radius: 18px;
            padding: 30px 26px;
            transition: all .25s ease;
            position: relative;
            overflow: hidden;
        }

        .eh-feat-card.wide { grid-column: span 6; }
        .eh-feat-card.small { grid-column: span 3; }

        .eh-feat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-accent);
            box-shadow: 0 20px 40px -20px rgba(20, 184, 166, 0.3);
        }

        .eh-feat-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .eh-feat-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        .eh-feat-ico {
            width: 42px; height: 42px;
            border-radius: 10px;
            display: grid; place-items: center;
            background: rgba(20, 184, 166, 0.12);
            border: 1px solid rgba(20, 184, 166, 0.25);
            color: var(--primary-accent);
            margin-bottom: 18px;
        }

        .eh-feat-card.amber .eh-feat-ico {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.28);
            color: var(--warm-accent);
        }

        .eh-feat-count {
            font-family: 'JetBrains Mono', monospace;
            font-size: 38px;
            font-weight: 700;
            color: var(--primary-accent);
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        @media (max-width: 1000px) {
            .eh-feat-card, .eh-feat-card.wide, .eh-feat-card.small { grid-column: span 12; }
            .eh-feat-head { grid-template-columns: 1fr; gap: 16px; }
        }

        /* ============ About page layout ============ */

        .eh-about {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 32px 40px;
            position: relative;
        }

        .eh-about-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 56px;
            padding: 46px 0;
            border-bottom: 1px solid var(--border-soft);
        }

        .eh-about-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.28em;
            color: var(--primary-accent);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .eh-about-headline {
            font-family: 'Sora', sans-serif;
            font-size: clamp(36px, 4.4vw, 58px);
            font-weight: 700;
            letter-spacing: -0.035em;
            line-height: 1.05;
            color: var(--text-primary);
            margin-bottom: 22px;
        }

        .eh-about-headline b {
            color: var(--warm-accent);
            font-weight: 700;
            text-decoration: underline wavy var(--warm-accent-soft);
            text-underline-offset: 10px;
            text-decoration-thickness: 1.5px;
        }

        .eh-about-intro {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .eh-about-card {
            background: linear-gradient(160deg, rgba(30, 45, 65, 0.7), rgba(15, 26, 39, 0.5));
            border: 1px solid var(--border-soft);
            border-radius: 22px;
            padding: 36px;
            position: relative;
            overflow: hidden;
        }

        .eh-about-card::before {
            content: '';
            position: absolute;
            top: -120px; right: -80px;
            width: 260px; height: 260px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 60%);
            filter: blur(10px);
        }

        .eh-about-card h3 {
            font-family: 'Sora', sans-serif;
            font-size: 15px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--warm-accent);
            margin-bottom: 22px;
        }

        .eh-about-kv {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 14px 0;
            border-bottom: 1px dashed var(--border-soft);
        }

        .eh-about-kv:last-child { border-bottom: 0; }

        .eh-about-kv span:first-child {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .eh-about-kv span:last-child {
            font-family: 'JetBrains Mono', monospace;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
        }

        /* Timeline */
        .eh-timeline {
            padding: 70px 0;
        }

        .eh-timeline h2 {
            font-family: 'Sora', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .eh-timeline-track {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .eh-timeline-track::before {
            content: '';
            position: absolute;
            left: 0; right: 0; top: 22px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
        }

        .eh-mile {
            position: relative;
            padding: 0 12px;
        }

        .eh-mile-dot {
            position: relative;
            width: 18px; height: 18px;
            border-radius: 50%;
            background: var(--bg-dark);
            border: 2px solid var(--primary-accent);
            margin-bottom: 28px;
        }

        .eh-mile-dot::after {
            content: '';
            position: absolute;
            inset: 3px;
            border-radius: 50%;
            background: var(--primary-accent);
        }

        .eh-mile-year {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: var(--warm-accent);
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .eh-mile-title {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .eh-mile-text {
            font-size: 13.5px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .eh-about-top { grid-template-columns: 1fr; padding: 26px 0; gap: 30px; }
            .eh-timeline-track { grid-template-columns: 1fr 1fr; }
        }

        /* Principles */
        .eh-principles {
            padding: 70px 0;
            border-top: 1px solid var(--border-soft);
        }

        .eh-principles h2 {
            font-family: 'Sora', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .eh-principles > p {
            color: var(--text-secondary);
            margin-bottom: 36px;
            max-width: 640px;
            line-height: 1.75;
        }

        .eh-principles-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border: 1px solid var(--border-soft);
            border-radius: 16px;
            overflow: hidden;
        }

        .eh-principle {
            padding: 32px 30px;
            border-bottom: 1px solid var(--border-soft);
            border-right: 1px solid var(--border-soft);
            display: flex;
            gap: 22px;
            align-items: flex-start;
            transition: background .2s;
        }

        .eh-principle:hover { background: rgba(20, 184, 166, 0.04); }

        .eh-principle:nth-child(2n) { border-right: 0; }
        .eh-principle:nth-last-child(-n+2) { border-bottom: 0; }

        .eh-principle-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-accent);
            min-width: 56px;
        }

        .eh-principle h4 {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            color: var(--text-primary);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .eh-principle p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        @media (max-width: 900px) {
            .eh-principles-grid { grid-template-columns: 1fr; }
            .eh-principle { border-right: 0 !important; }
            .eh-principle:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-soft); }
            .eh-principle:last-child { border-bottom: 0; }
        }

        /* Closing band */
        .eh-closing {
            margin: 50px 0 80px;
            padding: 60px 44px;
            background: linear-gradient(120deg, rgba(20, 184, 166, 0.1), rgba(245, 158, 11, 0.08));
            border: 1px solid var(--border-color);
            border-radius: 24px;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .eh-closing::after {
            content: '';
            position: absolute;
            right: -80px; top: -80px;
            width: 260px; height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.25), transparent 60%);
        }

        .eh-closing h2 {
            font-family: 'Sora', sans-serif;
            font-size: 34px;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 14px;
        }

        .eh-closing p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
        }

        .eh-closing .eh-cta-row { margin-bottom: 0; }

        @media (max-width: 900px) {
            .eh-closing { grid-template-columns: 1fr; padding: 40px 28px; }
        }

        /* Page title refresh for legal pages */
        .page-title {
            background: linear-gradient(110deg, var(--text-primary) 20%, var(--primary-accent) 60%, var(--warm-accent) 110%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }