/* ===================== PREMIUM FINTECH DESIGN SYSTEM ===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* 1. Elite Fintech Palette */
    --primary: #0A1F44; 
    --primary-light: #162E5A;
    --accent: #38BDF8; 
    --accent-glow: rgba(56, 189, 248, 0.3);
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* 2. Theme System (Defaults to Deep Navy) */
    --bg-main: #070914; 
    --bg-card: #0D1121;
    --bg-surface: #141C31;
    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 25px rgba(0,0,0,0.2);
    --shadow-accent: 0 0 20px rgba(56, 189, 248, 0.15);

    /* 3. Strict Spacing Scale */
    --space-1: 4px; --space-2: 8px; --space-3: 16px; 
    --space-4: 24px; --space-5: 32px; --space-6: 48px;

    /* 4. Fluid Typography */
    --font-size-base: clamp(14px, 1.2vw, 16px);
    --font-size-h1: clamp(2rem, 4vw, 3.5rem);
    --font-size-h2: clamp(1.5rem, 2.5vw, 2.2rem);
    --font-size-h3: clamp(1.1rem, 1.8vw, 1.4rem);
    
    /* 5. Layout Constants */
    --header-h: 70px;
    --sidebar-w: 280px;
    --sidebar-collapsed-w: 80px;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-mode {
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-surface: #F1F5F9;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border-color: rgba(0, 0, 0, 0.05);
}

/* ===================== GLOBAL FOUNDATION ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-base);
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, .elite-font { font-family: 'Outfit', sans-serif; font-weight: 700; }

/* 12-Column Grid System */
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-4); }
.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

@media (max-width: 1100px) {
    .col-8, .col-4, .col-6 { grid-column: span 12; }
}

/* ===================== LAYOUT ARCHITECTURE ===================== */
.app-viewport {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.fixed-header {
    height: var(--header-h);
    padding: 0 var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 17, 33, 0.85); /* Slightly transparent */
    backdrop-filter: blur(15px); /* Premium Glassmorphism */
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    position: relative; 
    z-index: 1000;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.fixed-header.scrolled {
    background: rgba(7, 9, 20, 0.98);
    backdrop-filter: blur(25px);
    padding: 0 var(--space-4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--accent-glow);
}

.header-left { display: flex; align-items: center; gap: var(--space-4); }
.logo-elite { display: flex; align-items: center; text-decoration: none; transition: transform 0.3s; }
.logo-elite:hover { transform: scale(1.02); }
.logo-img { height: 32px; width: auto; object-fit: contain; filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.3)); }

.header-center { 
    flex: 1; display: flex; justify-content: center; padding: 0 var(--space-4);
}

.nav-search-bar {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 16px;
    width: 100%; max-width: 440px;
    height: 42px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
    max-width: 480px;
}
.nav-search-bar input {
    background: transparent; border: none; outline: none;
    color: #fff; font-size: 0.85rem; font-weight: 500;
    width: 100%;
}
.nav-search-bar input::placeholder { color: var(--text-muted); opacity: 0.5; }
.search-hint {
    background: rgba(255,255,255,0.05); color: var(--text-muted);
    font-size: 0.6rem; font-weight: 800; padding: 4px 8px;
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}

.nav-brand-text { font-size: 0.85rem; letter-spacing: 2px; color: #fff; opacity: 0.9; cursor: default; }
.nav-brand-text strong { color: var(--accent); font-weight: 900; }
.nav-brand-text span { margin-left: 6px; font-weight: 300; opacity: 0.6; }
.header-right { display: flex; align-items: center; gap: var(--space-3); }

.sidebar-toggle {
    background: transparent; border: none; color: var(--text-muted);
    cursor: pointer; padding: 8px; border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; justify-content: center;
}
.sidebar-toggle:hover { background: rgba(56, 189, 248, 0.08); color: var(--accent); }

.app-body {
    display: flex;
    flex: 1;
    position: relative;
}

.fixed-sidebar {
    width: var(--sidebar-w);
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: width var(--transition-base);
    flex-shrink: 0;
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

.fixed-sidebar.collapsed { width: var(--sidebar-collapsed-w); }

.main-scroll-area {
    flex: 1;
    padding: var(--space-4);
    background: var(--bg-main);
    position: relative;
    min-height: calc(100vh - var(--header-h));
    /* Removed overflow-y: auto to allow body scroll */
}

/* Sidebar Collapse Polish */
.fixed-sidebar.collapsed .suc-info,
.fixed-sidebar.collapsed .sidebar-group label,
.fixed-sidebar.collapsed span,
.fixed-sidebar.collapsed .sidebar-footer span {
    display: none;
}

.fixed-sidebar.collapsed .sidebar-user-card { padding: var(--space-3); justify-content: center; }
.fixed-sidebar.collapsed .suc-avatar-wrap { margin: 0; }
.fixed-sidebar.collapsed .sidebar-group { padding: 0 var(--space-2); }
.fixed-sidebar.collapsed .dash-nav-v2 a { justify-content: center; padding: 12px 0; }
.fixed-sidebar.collapsed .nav-i-v2 { margin: 0; }

/* Custom Scrollbar for Sidebar */
.fixed-sidebar::-webkit-scrollbar { width: 4px; }
.fixed-sidebar::-webkit-scrollbar-track { background: transparent; }
.fixed-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.05); border-radius: 10px; }

/* Header Tools & Profile */
.header-tools { display: flex; align-items: center; gap: var(--space-3); margin-right: var(--space-4); }
.tool-item { 
    width: 38px; height: 38px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    background: rgba(255,255,255,0.03); border: 1px solid var(--border-color);
    cursor: pointer; transition: var(--transition-base); position: relative;
}
.tool-item:hover { background: var(--bg-surface); border-color: var(--accent); color: var(--accent); }

.notify-dot-nav {
    position: absolute; top: 0; right: 0; width: 14px; height: 14px;
    background: var(--danger); border: 2px solid var(--bg-card);
    border-radius: 50%; font-size: 0.6rem; color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

.nav-btn-link {
    font-size: 0.75rem; font-weight: 800; color: #fff;
    text-decoration: none; padding: 10px 16px;
    opacity: 0.6; transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-btn-link:hover { opacity: 1; color: var(--accent); }
.nav-btn-link.ms-3 { margin-left: var(--space-3); opacity: 1; }

.user-pill {
    display: flex; align-items: center; gap: var(--space-3);
    padding: 4px 6px 4px 16px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color); border-radius: 50px;
    transition: var(--transition-base); cursor: pointer;
}
.user-pill:hover { background: rgba(255,255,255,0.06); border-color: var(--accent-glow); }

.user-pill-info { display: flex; flex-direction: column; text-align: right; }
.user-name { font-size: 0.8rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; line-height: 1.1; }
.user-status-meta { font-size: 0.55rem; font-weight: 800; color: var(--accent); opacity: 0.7; letter-spacing: 1px; }

.nav-avatar { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent); object-fit: cover; box-shadow: 0 0 10px var(--accent-glow); }

/* Institutional Status Pill */
.nav-institutional-status {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.1); border-radius: 50px;
    font-size: 0.7rem; color: var(--text-muted);
}
.nav-institutional-status strong { color: var(--success); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }

@media (max-width: 768px) {
    .fixed-sidebar { position: absolute; left: -100%; top: var(--header-h); z-index: 999; height: calc(100vh - var(--header-h)); }
    .fixed-sidebar.mobile-open { left: 0; width: 80%; }
    .header-center { display: none; }
}

/* ===================== COMPONENT SYSTEM ===================== */
.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--space-3);
    padding: var(--space-4);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(56, 189, 248, 0.2);
}

.app-card .card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: var(--space-4);
}

.glass-panel h1, .glass-panel h2, .glass-panel h3, .glass-panel h4, .glass-panel p, .glass-panel span, .glass-panel div,
.card h1, .card h2, .card h3, .card h4, .card p, .card span, .card div,
.transfer-container *, .transfer-verification-container *, .auth-container *, .contact-form-wrapper * {
    color: inherit; /* Ensure inner elements pick up --text-card */
}

.glass-panel:hover, .card:hover {
    box-shadow: var(--shadow-hover) !important;
    transform: translateY(-2px) !important;
}

/* Inputs & Forms */
.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
    border-radius: var(--border-radius) !important;
    padding: 14px 16px !important;
    font-size: 1rem !important;
    transition: var(--transition) !important;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2) !important;
    outline: none !important;
}
.form-group label {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Floating Labels & Groups */
.floating-group-elite { position: relative; margin-bottom: 12px; }
.floating-group {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.floating-group label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    opacity: 0.8;
}

/* Institutional Form Controls */
.form-control-elite { 
    width: 100%; 
    padding: 12px 16px; 
    background: rgba(255,255,255,0.03) !important; 
    border: 1px solid var(--border-color) !important; 
    border-radius: var(--border-radius) !important; 
    color: var(--text-main) !important; 
    font-size: 0.9rem; 
    font-weight: 500; 
    transition: var(--transition) !important;
    outline: none !important;
}
.form-control-elite:focus { 
    background: rgba(255,255,255,0.06) !important; 
    border-color: var(--color-accent) !important; 
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15) !important; 
}

select.form-control-elite { 
    appearance: none !important; 
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important; 
    background-position: right 18px center !important; 
    background-size: 16px !important;
    padding-right: 50px !important;
}
select.form-control-elite option { 
    background: var(--bg-card) !important; 
    color: var(--text-main) !important; 
}

/* Checkbox Protocols */
.checkbox-container { 
    display: block; 
    position: relative; 
    padding-left: 30px; 
    cursor: pointer; 
    font-size: 0.8rem; 
    color: var(--text-muted); 
    user-select: none; 
    font-weight: 600; 
    line-height: 1.4; 
    text-align: left; 
}
.checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark { 
    position: absolute; top: 0; left: 0; height: 20px; width: 20px; 
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); 
    border-radius: 6px; transition: var(--transition); 
}
.checkbox-container:hover input ~ .checkmark { background: rgba(255,255,255,0.1); }
.checkbox-container input:checked ~ .checkmark { background: var(--color-accent); border-color: var(--color-accent); }
.checkmark:after { content: ""; position: absolute; display: none; }
.checkbox-container input:checked ~ .checkmark:after { display: block; }
.checkbox-container .checkmark:after { 
    left: 7px; top: 3px; width: 5px; height: 10px; 
    border: solid var(--bg-main); border-width: 0 2px 2px 0; 
    transform: rotate(45deg); 
}

/* Action Grids */
.form-grid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 768px) { .form-grid-row { grid-template-columns: 1fr; } }

/* Buttons */
.btn, .btn-primary {
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    transition: var(--transition) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary {
    background: var(--color-primary) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--color-secondary) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Outline Buttons Visibility */
.btn-outline {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-main) !important;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}
.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ===================== DASHBOARD UPGRADES ===================== */
.balance-card-hero {
    background: var(--gradient-hero) !important;
    color: #fff !important;
    padding: var(--spacing-lg) !important;
    border-radius: var(--border-radius-lg) !important;
    position: relative;
    overflow: hidden;
}
.balance-card-hero .amount {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    -webkit-text-fill-color: #fff !important;
}
.balance-card-hero .label-text, .balance-card-hero .account-number {
    color: rgba(255,255,255,0.8) !important;
}

/* Balance Toggle Icon */
.toggle-balance-icon {
    cursor: pointer;
    margin-left: 12px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.toggle-balance-icon:hover { opacity: 1; }

/* Dashboard Quick Actions */
.quick-actions-row {
    display: flex; gap: var(--spacing-sm); margin-top: var(--spacing-sm);
}
.qa-btn {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.qa-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Mini Stats */
.mini-stat-card {
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}
/* ===================== DASHBOARD V4 ARCHITECTURE ===================== */
.dashboard-composite {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.liquidity-terminal-v4 {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--space-4);
    padding: var(--space-5);
    position: relative;
    overflow: hidden;
}

.lt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-5);
}

.lt-badge {
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.lt-balance {
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
    letter-spacing: -1px;
}

.lt-balance small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.acc-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }
.acc-num { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #fff; opacity: 0.8; }

.lt-actions { display: flex; gap: var(--space-2); }
.lt-btn-action {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color); border-radius: 8px;
    color: #fff; font-size: 0.75rem; font-weight: 700;
    text-decoration: none; transition: var(--transition-base);
}
.lt-btn-action:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

.lt-stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4); border-top: 1px solid var(--border-color);
    padding-top: var(--space-4);
}

.lts-item label { display: block; font-size: 0.55rem; color: var(--text-muted); margin-bottom: 5px; font-weight: 800; letter-spacing: 1px; }
.lts-item strong { font-size: 1.1rem; font-weight: 800; }

/* Fintech Table UI */
.fintech-table { display: flex; flex-direction: column; }
.ft-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--space-3) 0; border-bottom: 1px solid var(--border-color);
    transition: var(--transition-base);
}
.ft-row:hover { background: rgba(255,255,255,0.01); padding-left: 5px; }

.ft-icon {
    width: 38px; height: 38px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.2);
}
.ft-icon.credit { color: var(--success); border: 1px solid rgba(16, 185, 129, 0.1); }
.ft-icon.debit { color: var(--text-muted); border: 1px solid rgba(255,255,255,0.05); }

.ft-info { flex: 1; margin-left: 15px; }
.ft-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.ft-date { font-size: 0.65rem; color: var(--text-muted); }

.ft-amount { font-size: 0.95rem; font-weight: 800; }

/* Security Matrix */
.sh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.sh-node {
    background: rgba(0,0,0,0.2); border: 1px solid var(--border-color);
    border-radius: 8px; padding: 10px 5px; text-align: center;
    font-size: 0.6rem; font-weight: 800; color: var(--text-muted);
}
.sh-node.active { border-color: var(--success); color: var(--success); background: rgba(16, 185, 129, 0.05); }

.sh-health .label { font-size: 0.55rem; color: var(--text-muted); font-weight: 800; letter-spacing: 1px; }
.sh-health .val { font-size: 1.2rem; font-weight: 800; color: var(--accent); }

/* Authority Interface */
.ca-status-box { display: flex; align-items: center; gap: 12px; }
.node-avatar { width: 44px; height: 44px; border-radius: 10px; background: #000; padding: 5px; border: 1px solid var(--border-color); }
.node-details strong { display: block; font-size: 0.75rem; color: #fff; }
.node-details span { font-size: 0.55rem; color: var(--success); font-weight: 800; letter-spacing: 0.5px; }

/* Utilities */
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: var(--space-4); }

.v-up { color: var(--success) !important; }
.v-down { color: var(--danger) !important; }
.text-accent { color: var(--accent) !important; }

/* Institutional Page Header (V3 Architecture) */
.page-header-elite { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 15px 20px; margin-bottom: 10px; 
}
.phe-left h1 { font-size: 1.25rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.5px; }
.phe-left p { font-size: 0.7rem; color: var(--text-muted); opacity: 0.7; font-weight: 500; }

.success-status-pill { 
    display: flex; align-items: center; gap: 6px; padding: 6px 12px; 
    background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2); 
    border-radius: 50px; color: var(--color-success); font-size: 0.65rem; 
    font-weight: 800; letter-spacing: 1px; box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

/* Settings V3 Architecture (Institutional Oversight) */
.settings-grid-v3 { 
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 15px; 
    padding: 15px; height: calc(100vh - 100px); overflow-y: auto; 
    align-items: start;
}
.settings-col-alpha, .settings-col-beta { display: flex; flex-direction: column; gap: 15px; min-height: 0; }

.profile-upload-gateway { 
    display: flex; align-items: center; gap: 15px; margin-bottom: 15px; 
    background: rgba(0,0,0,0.2); padding: 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.03); 
}
.pug-preview { position: relative; width: 60px; height: 60px; }
.pug-preview img { 
    width: 100%; height: 100%; border-radius: 10px; object-fit: cover; 
    border: 2px solid var(--color-accent); box-shadow: 0 0 10px rgba(56, 189, 248, 0.2); 
}
.pug-btn { 
    position: absolute; bottom: -5px; right: -5px; width: 22px; height: 22px; 
    background: var(--color-accent); color: var(--color-primary); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; 
    border: 3px solid #070914; transition: 0.3s; 
}
.pug-btn:hover { transform: scale(1.1) rotate(10deg); }
.pug-text h3 { font-size: 0.7rem; font-weight: 800; color: #fff; letter-spacing: 1px; margin-bottom: 2px; }
.pug-text p { font-size: 0.55rem; color: var(--text-muted); opacity: 0.6; }

.identity-form-elite { display: flex; flex-direction: column; gap: 10px; }
.form-row-elite { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-elite-save { 
    margin-top: 5px; font-weight: 800; letter-spacing: 1px; color: #fff; 
    background: linear-gradient(135deg, var(--color-accent) 0%, #0284c7 100%); 
    border: none; font-size: 0.7rem; padding: 10px; border-radius: 8px; cursor: pointer; transition: 0.3s;
}
.btn-elite-save:hover { box-shadow: 0 0 15px rgba(56, 189, 248, 0.3); transform: translateY(-2px); }

.security-toggles-v3 { display: flex; flex-direction: column; gap: 8px; }
.st-row { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 10px; background: rgba(0,0,0,0.2); border-radius: 8px; border: 1px solid rgba(255,255,255,0.03); 
}
.st-info strong { display: block; font-size: 0.7rem; color: #fff; margin-bottom: 1px; }
.st-info span { font-size: 0.55rem; color: var(--text-muted); opacity: 0.6; }

.terminal-list-v3 { display: flex; flex-direction: column; gap: 8px; }
.term-row { 
    display: flex; align-items: center; gap: 10px; padding: 10px; 
    background: rgba(0,0,0,0.2); border-radius: 8px; border: 1px solid rgba(255,255,255,0.03); 
}
.term-row.active { border-left: 3px solid var(--color-success); background: rgba(16, 185, 129, 0.05); }
.t-icon { width: 28px; height: 28px; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--text-muted); }
.active .t-icon { color: var(--color-success); }
.t-name { font-size: 0.7rem; font-weight: 700; color: #fff; margin-bottom: 1px; }
.t-meta { font-size: 0.55rem; color: var(--text-muted); opacity: 0.5; }
.badge-mini { font-size: 0.5rem; background: var(--color-success); color: #fff; padding: 1px 4px; border-radius: 3px; font-weight: 800; align-self: flex-start; }

@media (max-width: 1100px) {
    .settings-grid-v3 { grid-template-columns: 1fr; overflow-y: auto; }
}

/* ===================== SHARED ANIMATIONS ===================== */
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pulsate {
    animation: pulsate 2s infinite ease-in-out;
}

@keyframes pulsate {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ===================== TRANSACTIONS UI ===================== */
.tx-list {
    display: flex; flex-direction: column; gap: var(--spacing-xs);
}
.tx-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--spacing-sm);
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.tx-item:hover {
    transform: translateX(4px);
    border-color: var(--color-accent);
}
.v2-container, .container-elite, .hero-v2-container { width: 100%; max-width: 1560px; margin: 0 auto; padding: 0 6%; box-sizing: border-box; }
.tx-left { display: flex; align-items: center; gap: var(--spacing-sm); }
.tx-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.tx-icon.credit { background: rgba(16, 185, 129, 0.1); color: var(--color-success); }
.tx-icon.debit { background: rgba(239, 68, 68, 0.1); color: var(--color-danger); }
.tx-details h4 { margin: 0; font-size: 0.9rem; color: var(--text-main); }
.tx-details p { margin: 2px 0 0; font-size: 0.75rem; color: var(--text-muted); }
.tx-amount { font-weight: 600; font-size: 1rem; }
.tx-amount.credit { color: var(--color-success); }
.tx-amount.debit { color: var(--text-main); }

/* ===================== NOTIFICATIONS & TOAST ===================== */
.notify-bell-container { position: relative; cursor: pointer; }
.notify-dot-nav { 
    position: absolute; top: 0px; right: 0px; background: var(--color-danger); color: #fff;
    font-size: 0.55rem; font-weight: 900; width: 14px; height: 14px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 0 10px #ef4444; border: 2px solid #070914;
}
.notify-dropdown {
    position: absolute; top: 100%; right: -15px; width: 340px; margin-top: 15px; 
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius-sm); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.8); opacity: 0; visibility: hidden; 
    transform: translateY(10px); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 9999;
    display: flex; flex-direction: column; overflow: hidden;
}
.notify-bell-container.open .notify-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nd-header { 
    display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.2); 
}
.nd-header h4 { font-size: 0.75rem; font-weight: 800; color: #fff; margin: 0; letter-spacing: 1px; }
.nd-list { max-height: 350px; overflow-y: auto; display: flex; flex-direction: column; }
.nd-list::-webkit-scrollbar { width: 4px; }
.nd-list::-webkit-scrollbar-thumb { background: rgba(56, 189, 248, 0.2); border-radius: 10px; }

.nd-item { 
    display: flex; align-items: center; gap: 12px; padding: 15px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.03); transition: 0.2s; cursor: default;
}
.nd-item:hover { background: rgba(255,255,255,0.02); }
.ndi-icon { 
    width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; 
    background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; 
}
.ndi-icon.success { color: var(--color-success); border: 1px solid rgba(16, 185, 129, 0.1); }
.ndi-icon.warning { color: #f59e0b; border: 1px solid rgba(245, 158, 11, 0.1); }

.ndi-content { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ndi-title { font-size: 0.75rem; font-weight: 700; color: #fff; }
.ndi-meta { font-size: 0.6rem; color: var(--text-muted); opacity: 0.7; }
.ndi-type { font-weight: 800; color: var(--color-accent); letter-spacing: 0.5px; }

.nd-footer { padding: 12px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); background: rgba(0,0,0,0.2); }
.nd-footer a { 
    font-size: 0.6rem; font-weight: 800; color: var(--color-accent); 
    text-decoration: none; letter-spacing: 1.5px; transition: 0.3s; 
}
.nd-footer a:hover { color: #fff; }

/* Toast */
#toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
}
.toast {
    min-width: 250px; padding: 16px; border-radius: var(--border-radius-sm);
    background: var(--bg-card); border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-hover); color: var(--text-main);
    display: flex; align-items: center; gap: 12px;
    animation: toastSlideIn 0.3s ease forwards;
}
.toast.success { border-left-color: var(--color-success); }
.toast.warning { border-left-color: var(--color-warning); }
.toast.error { border-left-color: var(--color-danger); }
@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===================== TRANSFER FLOW UI UPGRADE ===================== */
.transfer-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 35px; }
.tab-btn { 
    padding: 12px 28px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); 
    border-radius: 50px; color: var(--text-muted); font-size: 0.75rem; font-weight: 800; cursor: pointer; transition: all 0.3s;
    letter-spacing: 1px;
}
.tab-btn.active { background: #fff; color: var(--color-primary); border-color: #fff; box-shadow: 0 0 25px rgba(255,255,255,0.2); }

.transfer-elite-page { padding: 40px 0; }
.terminal-ribbon { 
    display: flex; justify-content: center; gap: 40px; padding: 14px; background: rgba(0,0,0,0.3); 
    border-radius: 12px; border: 1px solid var(--border-color); margin-bottom: 35px; font-size: 0.65rem; font-weight: 800; color: #fff; letter-spacing: 1.5px;
    opacity: 0.8;
}
.transfer-container { max-width: 1000px; margin: 0 auto; padding: 60px; position: relative; z-index: 10; }
.transfer-header { text-align: center; margin-bottom: 50px; }
.transfer-header h1 { font-size: 2.8rem; margin: 10px 0; color: #fff; font-weight: 800; letter-spacing: -1px; }
.transfer-header p { color: var(--text-muted); font-size: 1.05rem; opacity: 0.8; }

.form-row-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; margin-bottom: 40px; }
.form-col-glass { padding: 40px; background: rgba(255,255,255,0.02); border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); }
.security-tier-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: rgba(56, 189, 248, 0.1); color: var(--color-accent); border-radius: 50px; font-size: 0.6rem; font-weight: 900; letter-spacing: 1.5px; margin-bottom: 25px; border: 1px solid rgba(56, 189, 248, 0.2); }
.form-col-glass label { font-size: 0.65rem; font-weight: 800; color: #fff; letter-spacing: 1.5px; margin-bottom: 15px; display: block; }

.mini-balance-card { padding: 35px; background: rgba(0,0,0,0.4); border-radius: 18px; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 0 30px rgba(0,0,0,0.6); }
.mbc-label { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; }
.mbc-val { font-size: 2rem; font-weight: 900; color: #fff !important; margin-bottom: 15px; letter-spacing: -0.5px; }
.mbc-val .curr { font-size: 1rem; color: var(--color-accent); }
.mbc-acc { font-size: 0.7rem; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); opacity: 0.4; }

.liquidity-projection { padding: 25px; border-radius: 15px; background: rgba(56, 189, 248, 0.03); border: 1px dashed rgba(56, 189, 248, 0.2); margin-top: 25px; }
.projection-val { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.projection-bar { width: 100%; height: 5px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.pb-fill { height: 100%; width: 100%; background: var(--color-accent); transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 0 10px var(--color-accent); }

.clearance-flow { display: flex; justify-content: space-between; margin-bottom: 50px; position: relative; padding: 0 10px; }
.flow-item { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; }
.flow-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; color: var(--text-muted); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.flow-label { font-size: 0.65rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; }

.flow-item.active .flow-icon { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); box-shadow: 0 0 25px rgba(56, 189, 248, 0.4); transform: scale(1.1); }
.flow-item.active .flow-label { color: #fff; opacity: 1; }
.flow-item.completed .flow-icon { background: rgba(16, 185, 129, 0.2); color: var(--color-success); border-color: var(--color-success); }
.flow-item.completed .flow-label { color: var(--color-success); opacity: 0.8; }

.propagation-sim { margin-top: 40px; text-align: left; padding: 30px; background: rgba(255,255,255,0.02); border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); }
.ps-label { font-size: 0.6rem; font-weight: 900; color: #fff; letter-spacing: 2px; margin-bottom: 15px; opacity: 0.8; }
.ps-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.ps-bar-fill { height: 100%; background: var(--color-accent); transition: width 1.2s ease; box-shadow: 0 0 15px var(--color-accent); }

.transfer-footer { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.crypto-note { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.65rem; font-weight: 800; color: var(--text-muted); opacity: 0.4; letter-spacing: 1.5px; text-transform: uppercase; }

@media (max-width: 900px) {
    .form-row-grid { grid-template-columns: 1fr; }
    .transfer-container { padding: 40px 20px; }
    .clearance-flow { gap: 10px; }
    .flow-label { display: none; }
}

/* ===================== SECURITY INFO ===================== */
.security-badge-live {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 20px;
    background: rgba(16, 185, 129, 0.1); color: var(--color-success);
    font-size: 0.8rem; font-weight: 600;
}
.security-badge-live::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 10px var(--color-success);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 40px rgba(56, 189, 248, 0.4); }
}

/* ===================== GLOBAL CONTAINERS & SPACING ===================== */
.v2-container,
.hero-v2-container,
.container-elite {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .v2-container, .hero-v2-container, .container-elite { padding-left: 20px; padding-right: 20px; }
}

.page-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background-color: #070914;
}

.page-hero::before {
    content: ""; position: absolute; inset: 0; 
    background: linear-gradient(to bottom, rgba(10, 31, 68, 0.4), rgba(7, 9, 20, 0.95)); 
    z-index: 1;
}

.page-hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.page-hero-content .breadcrumb {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.page-hero-content .breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.page-hero-content .breadcrumb a:hover {
    color: #fff;
    opacity: 1;
}

.page-hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-hero-content h1 span { 
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    line-height: 1.7;
    font-weight: 400;
}

.section-block {
    padding: 100px 0;
    position: relative;
}

.section-block > div:first-child:not(.v2-container):not(.container-elite) {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--color-accent) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline;
    color: var(--color-accent);
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes shine {
    to { background-position: 200% center; }
}

.reveal-title {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    filter: blur(10px);
    animation: eliteReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-subtitle {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    animation: eliteReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes eliteReveal {
    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
        filter: blur(0);
    }
}

/* Cinematic Word Reveal Upgrade */
.word-reveal { 
    display: inline-block; 
    overflow: hidden; 
    vertical-align: bottom;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
}

.word-reveal-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%) skewY(5deg);
    animation: cinematicReveal 1.2s cubic-bezier(0.2, 0, 0, 1) forwards;
}

@keyframes cinematicReveal {
    0% { transform: translateY(110%) skewY(5deg); opacity: 0; filter: blur(10px); }
    100% { transform: translateY(0) skewY(0); opacity: 1; filter: blur(0); }
}

.word-reveal:nth-child(1) .word-reveal-inner { animation-delay: 0.1s; }
.word-reveal:nth-child(2) .word-reveal-inner { animation-delay: 0.25s; }
.word-reveal:nth-child(3) .word-reveal-inner { animation-delay: 0.4s; }

/* Subtitle Reveal Fade-Blur */
.reveal-subtitle-premium {
    opacity: 0;
    animation: subtitleFadeBlur 1.5s cubic-bezier(0.2, 0, 0, 1) 0.6s forwards;
    letter-spacing: 0.02em;
}

@keyframes subtitleFadeBlur {
    from { opacity: 0; filter: blur(8px); transform: translateY(10px); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Scanline / Glitch Micro-Effect */
.hero-glitch {
    position: relative;
    display: inline-block;
}
.hero-glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 var(--color-danger);
    top: 0;
    color: #fff;
    background: var(--bg-main);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim {
    0% { clip: rect(12px, 9999px, 94px, 0); }
    20% { clip: rect(32px, 9999px, 14px, 0); }
    40% { clip: rect(74px, 9999px, 86px, 0); }
    60% { clip: rect(54px, 9999px, 44px, 0); }
    80% { clip: rect(98px, 9999px, 12px, 0); }
    100% { clip: rect(10px, 9999px, 78px, 0); }
}

/* ===================== LAYOUT COMPONENTS ===================== */
.admin-sidebar {
    background: var(--bg-card) !important;
    border-right: 1px solid var(--border-color) !important;
}
.admin-sidebar a {
    color: var(--text-muted) !important;
    margin: 4px 16px; border-radius: var(--border-radius-sm);
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: var(--hover-bg) !important;
    color: var(--color-primary) !important;
    border-left: none !important;
}
.admin-topbar {
    background: var(--bg-card) !important;
    border-bottom: 1px solid var(--border-color) !important;
}
.admin-body {
    background: var(--bg-main) !important;
    color: var(--text-main) !important;
}
.stat-card.admin-stat {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-soft) !important;
}
.admin-table-container th {
    background: var(--bg-input) !important;
    color: var(--text-muted) !important;
}
.badge-status {
    padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.badge-status.completed { background: rgba(16,185,129,0.1); color: var(--color-success); }
.badge-status.pending { background: rgba(245,158,11,0.1); color: var(--color-warning); }
.badge-status.failed { background: rgba(239,68,68,0.1); color: var(--color-danger); }

/* Animation Classes */
.fade-in { animation: fadeIn 0.4s ease-in forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Menu Fixes */
@media (max-width: 768px) {
    .dash-grid-elite { flex-direction: column; }
    .dashboard-aside {
        position: fixed; left: -100%; top: 0; width: 280px; height: 100vh;
        z-index: 1000; transition: var(--transition); background: var(--bg-card);
    }
    .dashboard-aside.open { left: 0; }
    .hamburger { display: block !important; }
}

/* ===================== V3 DASHBOARD ARCHITECTURE (Institutional Hub) ===================== */
.dashboard-wrapper-v3 { 
    display: flex; min-height: 100vh; background: var(--bg-main); 
    overflow: hidden; width: 100%;
}

.dashboard-aside-v2 { 
    width: 300px; min-width: 300px; height: 100vh; 
    background: rgba(7, 9, 20, 0.4); border-right: 1px solid var(--border-color);
    display: flex; flex-direction: column; position: sticky; top: 0; 
    z-index: 100; backdrop-filter: blur(10px);
}

.dashboard-main-v3 { 
    flex: 1; height: 100vh; display: flex; flex-direction: column; 
    min-width: 0; /* Prevents flex children from overflowing */
}

/* ===================== HERO V2 & HOME PAGE FIXES ===================== */
.hero-premium {
    position: relative;
    padding: 100px 0 100px;
    background: linear-gradient(rgba(7, 9, 20, 0.8), rgba(7, 9, 20, 0.8)), url('/assets/img/1/1.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 90vh;
}
.hero-premium-v2 {
    position: relative;
    padding: 130px 5% 100px;
    background: linear-gradient(rgba(7, 9, 20, 0.8), rgba(7, 9, 20, 0.8)), url('/assets/img/1/1.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center;
}
.parallax-glow-1, .parallax-glow-2 {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: 0;
}
.parallax-glow-1 { width: 500px; height: 500px; background: rgba(30, 58, 138, 0.4); top: -20%; left: -10%; }
.parallax-glow-2 { width: 400px; height: 400px; background: rgba(56, 189, 248, 0.2); bottom: 10%; right: -5%; }

.hero-v2-container {
    display: flex; gap: 80px; width: 100%; position: relative; z-index: 1; align-items: center; justify-content: center;
}
.hero-v2-content { flex: 0.9; }
.hero-v2-visual { flex: 1.1; position: relative; }

.elite-reveal-title {
    font-size: 4rem; line-height: 1.1; font-weight: 800; color: #FFFFFF !important; margin-bottom: 24px;
}
.elite-reveal-title .gradient-text {
    background: linear-gradient(to right, #fff, var(--color-accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.elite-reveal-sub {
    font-size: 1.15rem; line-height: 1.7; color: var(--text-muted) !important; margin-bottom: 40px; max-width: 580px;
}
.hero-v2-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }

/* Home page structural fixes */
.section-block-v2 { padding: 120px 0; position: relative; }
.v2-container, .container-elite { width: 100%; margin: 0 auto; padding: 0 6%; box-sizing: border-box; }
.meta.lc-status, .lc-status { font-size: 0.65rem; font-weight: 800; color: #fff; opacity: 0.9; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
.lc-tag { color: #fff; opacity: 1; }
.meta-desc-max { color: #FFFFFF !important; font-size: 1.1rem; max-width: 600px; margin: 20px auto 40px; line-height: 1.6; }
.elite-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.ef-card { padding: 40px; text-align: left; }
.ef-card h3 { color: #FFFFFF !important; font-size: 1.3rem; margin: 20px 0 10px; }
.ef-icon { color: var(--color-accent); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(56,189,248,0.1); border-radius: 12px; }

.split-layout-v2 { display: flex; gap: 60px; align-items: center; }
.split-content { flex: 1; }
.split-content h2 { font-size: 2.8rem; color: #FFFFFF !important; margin-bottom: 20px; line-height: 1.2; }
.split-content p { color: var(--text-muted) !important; font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }
.split-visual { flex: 1; }

.final-cta-v2 { padding: 120px 5%; text-align: center; position: relative; background: var(--bg-card); border-top: 1px solid var(--border-color); }
.final-cta-content h2 { font-size: 3.5rem; color: #FFFFFF !important; margin-bottom: 20px; }
.final-cta-content p { color: var(--text-muted) !important; font-size: 1.2rem; margin-bottom: 40px; }

@media (max-width: 968px) {
    .hero-v2-container, .split-layout-v2 { flex-direction: column; text-align: center; }
    .elite-reveal-title { font-size: 3rem; }
    .hero-v2-actions { justify-content: center; }
    .meta-desc-max, .split-content p { margin: 20px auto 40px; }
}

/* Consolidated into Institutional V3 Footer logic at bottom */

/* ===================== VISIBILITY & UTILITY REFORCEMENTS ===================== */
.v-up, .text-success, .success-text { color: var(--color-success) !important; font-weight: 700 !important; }
.v-down, .text-danger, .danger-text { color: var(--color-danger) !important; font-weight: 700 !important; }

/* Scroll-aware transitions managed through .fixed-header.scrolled above */

/* Footer Link Visibility Enhancement */
.f-col h4 {
    color: #FFFFFF !important;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 25px;
}

.f-col li a {
    color: #CBD5E1 !important; /* Brighter slate for links */
}

.f-col li a:hover {
    color: var(--color-accent) !important;
}

.f-mission {
    color: #94A3B8 !important; /* High-contrast subtle text */
}

.f-logo-elite span {
    color: #FFFFFF !important;
}

/* Ensure footer certification badges are visible */
.cert {
    color: #94A3B8 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Fix light mode conflicts to keep Navy uniform */
body.light-mode {
    --bg-main: #0A1F44;
    --bg-card: #0F2A5A;
    --text-main: #FFFFFF;
    --text-card: #F8FAFC;
    --text-muted: #94A3B8;
}

/* Newsletter Input Fixes */
.f-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Footer Socials Visibility */
.f-socials-elite a {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #FFFFFF !important;
}

.f-socials-elite a:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-accent) !important;
}

/* ===================== GLOBAL DASHBOARD UNIFICATION ===================== */
.dashboard-wrapper, .dashboard-main, .dashboard-aside, .admin-dashboard-elite {
    background: var(--bg-main) !important;
    color: var(--text-main) !important;
}

.dashboard-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-main) !important;
}

/* User Profile Terminal (Sidebar Head) */
.sidebar-user-card { 
    display: flex; align-items: center; gap: 15px; padding: 25px 20px; 
    border-bottom: 1px solid rgba(255,255,255,0.03); margin-bottom: 25px; 
}
.suc-avatar-wrap { position: relative; }
.suc-avatar { 
    width: 42px; height: 42px; border-radius: 12px; background: #0A1F44; 
    border: 1px solid rgba(56, 189, 248, 0.2); padding: 5px; 
}
.suc-status { 
    position: absolute; bottom: -2px; right: -2px; width: 10px; height: 10px; 
    background: var(--color-success); border-radius: 50%; border: 2px solid #070914; 
    box-shadow: 0 0 10px var(--color-success);
}

.suc-info { display: flex; flex-direction: column; gap: 2px; }
.suc-name { font-size: 0.85rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.suc-rank { font-size: 0.6rem; font-weight: 800; color: var(--color-accent); letter-spacing: 1px; opacity: 0.9; }
.suc-status-text { font-size: 0.55rem; font-weight: 700; color: #fff; opacity: 0.6; letter-spacing: 0.5px; }

/* Sidebar V2 Architecture (High-Density Oversight) */
.dashboard-aside-v2 { 
    width: 300px; min-height: 100vh; flex-shrink: 0; background: #070914; 
    border-right: 1px solid rgba(255,255,255,0.03); display: flex; flex-direction: column; padding: 0;
    position: sticky; top: 0; z-index: 1001;
}

.sidebar-group { margin-bottom: 25px; }
.group-label { display: block; padding: 0 25px; font-size: 0.6rem; font-weight: 800; color: var(--text-muted); opacity: 0.5; letter-spacing: 1.5px; margin-bottom: 10px; }

.dash-nav-v2 { display: flex; flex-direction: column; }
.dash-nav-v2 a { 
    display: flex; align-items: center; gap: 15px; padding: 10px 25px; text-decoration: none; 
    color: #fff; font-size: 0.75rem; font-weight: 700; transition: 0.3s; position: relative;
}
.dash-nav-v2 a:hover { color: #fff; background: rgba(255,255,255,0.02); }
.dash-nav-v2 a.active { color: var(--color-accent); background: rgba(56, 189, 248, 0.03); }
.dash-nav-v2 a.active::after { 
    content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 2px; 
    background: var(--color-accent); box-shadow: 0 0 10px var(--color-accent); border-radius: 2px 0 0 2px;
}
.nav-i-v2 { color: currentColor; opacity: 0.7; display: flex; align-items: center; }

.sidebar-footer-v2 { margin-top: auto; padding: 20px 25px; border-top: 1px solid rgba(255,255,255,0.03); }
.node-badge { display: flex; align-items: center; gap: 8px; font-size: 0.55rem; font-weight: 800; color: var(--text-muted); opacity: 0.6; margin-bottom: 15px; }
.node-badge .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--color-success); }

.sidebar-logout-v2 { 
    display: flex; align-items: center; gap: 10px; font-size: 0.65rem; font-weight: 800; color: #f43f5e; 
    text-decoration: none; opacity: 0.7; transition: 0.3s; letter-spacing: 1px;
}
.sidebar-logout-v2:hover { opacity: 1; transform: translateX(5px); }

/* Global Wrapper Adjustments */
.dashboard-wrapper-v3 .dashboard-aside-v2 { display: flex; }
.dashboard-aside { display: none !important; } /* Hide old one */

.dashboard-main {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Compact Sidebar Adjustments */
.sidebar-header { padding: 0 20px 20px; }
.sidebar-logo { width: 35px; }
.sidebar-brand-title { font-size: 1rem; color: #fff !important; font-weight: 700; }
.dash-nav a { padding: 12px 20px !important; font-size: 0.82rem !important; color: var(--text-muted) !important; display: flex; align-items: center; gap: 12px; transition: var(--transition); }
.dash-nav a:hover, .dash-nav a.active { background: rgba(56, 189, 248, 0.05) !important; color: var(--color-accent) !important; }

/* Navbar Command Center Integration */
.navbar-command-center { display: flex; flex-direction: column; gap: 4px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,0.1); }
.ncc-title { display: flex; align-items: center; gap: 12px; }
.ncc-title h1 { font-size: 0.95rem; font-weight: 800; letter-spacing: 2px; color: #fff; margin: 0; }
.ncc-status { font-size: 0.6rem; color: var(--color-success); font-weight: 800; letter-spacing: 1px; }

.ncc-meta { display: flex; gap: 15px; }
.ncc-encryption { font-size: 0.55rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.5px; opacity: 0.7; }
.ncc-authorized { font-size: 0.55rem; color: var(--color-accent); font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }

.navbar-actions-elite { display: flex; align-items: center; gap: 20px; }
.btn-icon-nav { background: transparent; border: none; color: var(--text-muted); cursor: pointer; position: relative; padding: 5px; transition: 0.3s; }
.btn-icon-nav:hover { color: #fff; }
.notify-dot-nav { position: absolute; top: 5px; right: 5px; width: 6px; height: 6px; background: #ef4444; border-radius: 50%; box-shadow: 0 0 10px #ef4444; }

/* Dashboard Balance Layout Optimization (Ultra-Compact) */
.dash-grid-elite { 
    display: grid; 
    grid-template-columns: 1.15fr 0.85fr; 
    gap: 12px; 
    padding: 12px;
    align-items: stretch; 
}

.welcome-text h1 { font-size: 1.5rem !important; margin-bottom: 4px !important; }
.welcome-text p { font-size: 0.75rem !important; margin-bottom: 0 !important; }
.dash-top-bar-elite { padding: 15px 20px !important; margin-bottom: 0 !important; }

.asset-card-main, .ledger-container-elite, .clearing-authority-card, .security-health-card, .global-presence-card, .elite-mini-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 15px !important;
}

.ac-balance { font-size: 1.8rem !important; color: #fff !important; font-weight: 800; margin-bottom: 10px !important; }
.ac-stats { display: flex; gap: 20px; margin-top: 10px !important; }
.ac-stat-item label { font-size: 0.6rem !important; }
.ac-stat-item span { font-size: 0.85rem !important; }

.le-header { margin-bottom: 10px; }
.le-header h3 { font-size: 0.75rem !important; }
.le-list { max-height: 48vh; overflow-y: auto; padding-right: 5px; }
.le-row { padding: 10px 0 !important; }
.le-title { font-size: 0.8rem !important; }
.le-meta { font-size: 0.65rem !important; }

.ca-header h3 { font-size: 0.75rem !important; }
.ca-brief { font-size: 0.75rem !important; line-height: 1.4; margin-bottom: 8px; }
.ca-details h4 { font-size: 0.85rem !important; }
.ca-metrics { padding: 10px; margin-bottom: 10px; }

/* Ticker Bar Compactness */
.dash-ticker-compact { 
    height: 30px; display: flex; align-items: center; background: rgba(0,0,0,0.4) !important; 
    overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-scroll { display: flex; gap: 40px; animation: ticker-scroll 30s linear infinite; }
.ticker-item { font-size: 0.7rem !important; font-weight: 600; }
/* Optimized Transaction Ledger */
.ledger-container-elite { height: 100%; display: flex; flex-direction: column; }
.le-list { 
    flex: 1; 
    overflow-y: auto; 
    padding-right: 10px; 
    scrollbar-width: thin; 
    scrollbar-color: rgba(56, 189, 248, 0.2) transparent;
}
.le-list::-webkit-scrollbar { width: 4px; }
.le-list::-webkit-scrollbar-thumb { background: rgba(56, 189, 248, 0.2); border-radius: 10px; }

.le-row { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 12px 10px !important; 
    border-bottom: 1px solid rgba(255,255,255,0.03); 
    transition: 0.2s; 
}
.le-row:hover { background: rgba(255,255,255,0.02); }
.le-row:last-child { border-bottom: none; }

.le-icon-box { 
    width: 32px; height: 32px; border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; 
    flex-shrink: 0; background: rgba(0,0,0,0.2);
}
.le-icon-box.v-up { color: var(--color-success); border: 1px solid rgba(16, 185, 129, 0.1); }
.le-icon-box.v-down { color: var(--color-danger); border: 1px solid rgba(244, 63, 94, 0.1); }

.le-info { flex: 1; min-width: 0; }
.le-title { font-size: 0.8rem !important; font-weight: 700; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.le-meta { font-size: 0.62rem !important; color: var(--text-muted); opacity: 0.6; }

.le-amount { font-size: 0.9rem !important; font-weight: 800; white-space: nowrap; }
.le-amount.v-up { color: var(--color-success); }
.le-amount.v-down { color: var(--color-danger); }

/* Consolidated Institutional Dashboard Overhaul (High Density) */
.dashboard-wrapper-v3 { display: flex; min-height: 100vh; background: #070914; color: #fff; position: relative; overflow: hidden; }
.dashboard-main-v3 { flex: 1; min-width: 0; padding: 0; display: flex; flex-direction: column; position: relative; background: #080a18; overflow-y: auto; }
.dashboard-main { flex: 1; display: flex; flex-direction: column; min-height: 100%; }

@media (max-width: 1200px) {
    .is-logged-in .main-footer-elite { margin-left: 80px; width: calc(100% - 80px); }
}

@media (max-width: 900px) {
    .is-logged-in .main-footer-elite { margin-left: 0; width: 100%; }
}

/* Institutional Footer V3 (Full-Width Spread) */
.main-footer-elite { 
    padding: 50px 0 40px !important; 
    border-top: 1px solid rgba(255,255,255,0.03);
    background: #070914 !important;
}
.footer-container { 
    max-width: none; width: 100%; padding: 0 6%; 
}
.footer-grid-compact { 
    display: grid; 
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr; 
    gap: 80px; 
    margin-bottom: 80px; 
    align-items: start;
    justify-content: space-between;
}
.f-brand-col { display: flex; flex-direction: column; gap: 20px; }
.f-logo-elite { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.f-logo-img { height: 32px; width: auto; filter: grayscale(1) brightness(3); }
.f-logo-elite span { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 3px; }
.f-mission-compact { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 320px; opacity: 0.7; }

.footer-status-mini { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.footer-status-mini span { 
    font-size: 0.6rem; font-weight: 900; color: var(--color-accent); 
    padding: 4px 10px; background: rgba(56, 189, 248, 0.05); 
    border-radius: 4px; letter-spacing: 1.5px; border: 1px solid rgba(56, 189, 248, 0.1); 
}

.f-nav-col h4 { font-size: 0.75rem; color: #fff; letter-spacing: 2.5px; margin-bottom: 25px; font-weight: 800; text-transform: uppercase; }
.f-nav-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.f-nav-col ul li { font-size: 0.85rem; }
.f-nav-col ul li a { color: #fff; text-decoration: none; transition: 0.3s; opacity: 0.9; }
.f-nav-col ul li a:hover { color: var(--color-accent); opacity: 1; transform: translateX(8px); display: inline-block; }

.f-newsletter-compact { display: flex; gap: 10px; margin-bottom: 25px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 6px; border-radius: 10px; }
.f-newsletter-compact input { flex: 1; height: 40px; background: transparent; border: none; padding: 0 16px; color: #fff; font-size: 0.85rem; outline: none; }
.f-newsletter-compact button { height: 40px; padding: 0 24px; background: var(--color-accent); color: var(--color-primary); border: none; border-radius: 8px; font-weight: 900; font-size: 0.75rem; cursor: pointer; transition: 0.3s; }
.f-newsletter-compact button:hover { background: #fff; transform: scale(1.02); }

.f-socials-compact { display: flex; gap: 25px; margin-top: 10px; }
.f-socials-compact a { font-size: 0.75rem; color: var(--text-muted); text-decoration: none; font-weight: 800; transition: 0.3s; opacity: 0.4; letter-spacing: 1.5px; text-transform: uppercase; }
.f-socials-compact a:hover { color: var(--color-accent); opacity: 1; }

.footer-bottom-compact { 
    display: flex; justify-content: space-between; align-items: center; 
    padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.03); 
    margin-top: 20px;
}
.f-legal-links { display: flex; gap: 35px; }
.f-legal-links a { font-size: 0.7rem; color: #fff; text-decoration: none; opacity: 1; font-weight: 800; transition: 0.3s; }
.f-legal-links a:hover { color: #fff; opacity: 1; }

.f-copyright { font-size: 0.7rem; color: var(--text-muted); opacity: 0.3; font-weight: 700; letter-spacing: 0.5px; }
.f-certs-compact { display: flex; gap: 25px; }
.f-certs-compact span { font-size: 0.65rem; font-weight: 900; color: var(--text-muted); opacity: 0.3; letter-spacing: 1.5px; }

/* Dashboard Balance Layout Optimization */
.dash-grid-elite { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px; align-items: start; }
.dash-col-alpha { display: flex; flex-direction: column; gap: 30px; }
.card-grid-lite { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (max-width: 1100px) {
    .footer-grid-compact { grid-template-columns: 1fr 1fr; gap: 30px; }
    .dash-grid-elite { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .footer-grid-compact { grid-template-columns: 1fr; }
    .footer-bottom-compact { flex-direction: column; gap: 20px; text-align: center; }
}

.le-row {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .dash-grid-elite {
        grid-template-columns: 1fr !important;
    }
}

/* ===================== ELITE PRELOADER (SECURE UPLINK) ===================== */
.elite-preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #070914; 
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.8,0,0.2,1), visibility 0.8s;
    overflow: hidden;
}
.ep-bg-layer {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.25) blur(15px);
    transform: scale(1.1);
    z-index: 1; opacity: 0.6;
}
.elite-preloader.fade-out { opacity: 0; visibility: hidden; }

.ep-glow {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.06), transparent 60%);
    animation: ep-breathe 4s infinite alternate;
}
@keyframes ep-breathe { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.2); opacity: 1; } }

.ep-content { position: relative; z-index: 2; width: 320px; text-align: center; }

.ep-logo-wrap { position: relative; display: inline-block; margin-bottom: 40px; overflow: hidden; padding-bottom:10px; }
.ep-logo { width: 220px; filter: drop-shadow(0 0 15px rgba(255,255,255,0.05)); }
.ep-scanner {
    position: absolute; top: 0; left: -10%; width: 120%; height: 2px;
    background: var(--color-accent);
    box-shadow: 0 0 15px var(--color-accent);
    animation: ep-scan 2.5s infinite linear;
    opacity: 0.8;
}
@keyframes ep-scan {
    0% { transform: translateY(-10px); }
    50% { transform: translateY(80px); } 
    100% { transform: translateY(-10px); }
}

.ep-status-text {
    font-size: 0.75rem; font-family: monospace; color: #fff; opacity: 1;
    letter-spacing: 2px; margin-bottom: 12px; font-weight: 600;
}

.ep-loader-track {
    width: 100%; height: 3px; background: rgba(255,255,255,0.05);
    border-radius: 4px; overflow: hidden; margin-bottom: 12px;
}
.ep-loader-fill {
    width: 0%; height: 100%; background: var(--color-accent);
    box-shadow: 0 0 10px var(--color-accent);
    transition: width 0.1s linear;
}

.ep-metrics { display: flex; justify-content: space-between; font-size: 0.65rem; font-family: monospace; color: var(--color-accent); font-weight: bold; }

/* ===================== HERO ALIGNMENT CORRECTION ===================== */
.hero-v2-container {
    display: flex !important;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start !important;
    justify-content: space-between;
}
.hero-v2-content { flex: 1 1 50%; max-width: 600px; }
.hero-v2-visual {
    flex: 1 1 40%;
    max-width: 500px;
    align-self: flex-start !important;
    margin-top: -20px; /* Fine-tune optical alignment with the text baseline */
}

.section-title-sm {
    color: #FFFFFF !important;
}

/* ===================== PREMIUM MOBILE NAVIGATION ===================== */
.public-hamburger {
    display: none;
    background: rgba(255,255,255,0.03); border: 1px solid var(--border-color);
    color: #fff; cursor: pointer; padding: 10px; border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001; align-items: center; justify-content: center;
}
.public-hamburger:hover { background: rgba(56, 189, 248, 0.1); border-color: var(--accent); color: var(--accent); }

.nav-items-desktop { display: flex; align-items: center; gap: var(--space-3); }

@media (max-width: 991px) {
    .nav-items-desktop { display: none !important; }
    .public-hamburger { display: flex !important; }
}

.public-nav-drawer {
    position: fixed; top: 0; right: -100%; width: 340px; height: 100vh;
    background: rgba(13, 17, 33, 0.92); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    z-index: 2000; transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 50px 40px; border-left: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
}
.public-nav-drawer.open { right: 0; box-shadow: -30px 0 80px rgba(0,0,0,0.6); }

.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.drawer-logo { height: 36px; filter: drop-shadow(0 0 12px var(--accent-glow)); }
.close-drawer { background: transparent; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; opacity: 0.5; transition: 0.3s; line-height: 1; }
.close-drawer:hover { opacity: 1; color: var(--accent); transform: rotate(90deg); }

.drawer-links { display: flex; flex-direction: column; gap: 32px; flex: 1; }
.drawer-links a { 
    color: #fff; text-decoration: none; font-size: 1.3rem; font-weight: 700; 
    font-family: 'Outfit', sans-serif; transition: 0.3s; opacity: 0.7; 
    letter-spacing: -0.02em; display: block;
}
.drawer-links a:hover { opacity: 1; color: var(--accent); transform: translateX(12px); }

.drawer-footer-actions { margin-top: auto; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }

.drawer-overlay {
    position: fixed; inset: 0; background: rgba(2, 6, 23, 0.6); 
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    z-index: 1999; opacity: 0; visibility: hidden; transition: 0.4s ease;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ===================== INSTITUTIONAL MEDIA UPGRADE ===================== */
.section-institutional-media { padding: 120px 0; background: rgba(0,0,0,0.1); border-top: 1px solid var(--border-color); position: relative; }
.media-split { display: flex; gap: 80px; align-items: center; }
.media-text { flex: 1.1; }
.media-text h2 { font-size: 2.8rem; line-height: 1.1; margin: 20px 0; }
.media-text p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; margin-bottom: 40px; }

.media-feature-row { display: flex; flex-direction: column; gap: 30px; }
.mf-item { display: flex; gap: 20px; align-items: flex-start; }
.mf-img { width: 100px; height: 70px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-color); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.mf-item:hover .mf-img { transform: scale(1.08); border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.mf-content strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 5px; letter-spacing: -0.01em; }
.mf-content span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; display: block; opacity: 0.8; }

.media-visual-stack { flex: 0.9; position: relative; }
.mvs-main { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.05); }
.mvs-img-main { width: 100%; display: block; filter: brightness(0.9); transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.mvs-main:hover .mvs-img-main { transform: scale(1.05); filter: brightness(1.1); }

.mvs-overlay { 
    position: absolute; bottom: 25px; left: 25px; display: flex; align-items: center; gap: 12px; 
    background: rgba(7, 9, 20, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 12px 20px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.05);
}
.pulse-ring { width: 10px; height: 10px; background: var(--success); border-radius: 50%; box-shadow: 0 0 12px var(--success); animation: pulse-ring 2s infinite; }
.pulse-label { font-size: 0.65rem; font-weight: 800; color: #fff; letter-spacing: 2px; text-transform: uppercase; }

@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

@media (max-width: 968px) {
    .section-institutional-media { padding: 80px 0; }
    .media-split { flex-direction: column; gap: 50px; }
    .media-text h2 { font-size: 2rem; text-align: center; }
    .media-text p { text-align: center; }
    .mf-img { width: 80px; height: 55px; }
}

.section-title-sm {
    color: #FFFFFF !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-head h2 span, 
.section-block-v2 h2 span,
.feature-card-modern h4 span,
.meta-tag,
.pillar-label {
    color: #FFFFFF !important;
}

.final-terminal h2 span { color: #fff; }

/* ===================== CONSOLIDATED TRANSFER FLOW (V3) ===================== */
.transfer-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 35px; }
.tab-btn { 
    padding: 12px 28px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); 
    border-radius: 50px; color: var(--text-muted); font-size: 0.75rem; font-weight: 800; cursor: pointer; transition: all 0.3s;
    letter-spacing: 1px;
}
.tab-btn.active { background: #fff; color: var(--color-primary); border-color: #fff; box-shadow: 0 0 25px rgba(255,255,255,0.2); }

.transfer-elite-page { padding: 40px 0; flex: 1; overflow-y: auto; height: 100%; width: 100%; display: flex; flex-direction: column; }
.terminal-ribbon { 
    display: flex; justify-content: center; gap: 40px; padding: 14px; background: rgba(0,0,0,0.3); 
    border-radius: 12px; border: 1px solid var(--border-color); margin-bottom: 35px; font-size: 0.65rem; font-weight: 800; color: #fff; letter-spacing: 1.5px;
    opacity: 0.8;
}
.transfer-container { max-width: 1000px; margin: 0 auto; padding: 60px; position: relative; z-index: 10; }
.transfer-header { text-align: center; margin-bottom: 50px; }
.transfer-header h1 { font-size: 2.8rem; margin: 10px 0; color: #fff; font-weight: 800; letter-spacing: -1px; }
.transfer-header p { color: var(--text-muted); font-size: 1.05rem; opacity: 0.8; }

.form-row-grid { display: grid; grid-template-columns: 340px 1fr; gap: 40px; margin-bottom: 40px; }
.form-col-glass { padding: 40px; background: rgba(255,255,255,0.02); border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); }
.security-tier-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: rgba(56, 189, 248, 0.1); color: var(--color-accent); border-radius: 50px; font-size: 0.6rem; font-weight: 900; letter-spacing: 1.5px; margin-bottom: 25px; border: 1px solid rgba(56, 189, 248, 0.2); }

.mini-balance-card { padding: 35px; background: rgba(0,0,0,0.4); border-radius: 18px; border: 1px solid rgba(255,255,255,0.05); box-shadow: inset 0 0 30px rgba(0,0,0,0.6); }
.mbc-label { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; }
.mbc-val { font-size: 2rem; font-weight: 900; color: #fff !important; margin-bottom: 15px; letter-spacing: -0.5px; }
.mbc-val .curr { font-size: 1rem; color: var(--color-accent); }
.mbc-acc { font-size: 0.7rem; font-family: 'JetBrains Mono', monospace; color: var(--text-muted); opacity: 0.4; }

.liquidity-projection { padding: 25px; border-radius: 15px; background: rgba(56, 189, 248, 0.03); border: 1px dashed rgba(56, 189, 248, 0.2); margin-top: 25px; }
.projection-val { font-size: 1.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.projection-bar { width: 100%; height: 5px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.pb-fill { height: 100%; width: 100%; background: var(--color-accent); transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 0 10px var(--color-accent); }

.clearance-flow { display: flex; justify-content: space-between; margin-bottom: 50px; position: relative; padding: 0 10px; }
.flow-item { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; }
.flow-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; color: var(--text-muted); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.flow-label { font-size: 0.65rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; }

.flow-item.active .flow-icon { background: var(--color-accent); color: var(--color-primary); border-color: var(--color-accent); box-shadow: 0 0 25px rgba(56, 189, 248, 0.4); transform: scale(1.1); }
.flow-item.active .flow-label { color: #fff; opacity: 1; }
.flow-item.completed .flow-icon { background: rgba(16, 185, 129, 0.2); color: var(--color-success); border-color: var(--color-success); }
.flow-item.completed .flow-label { color: var(--color-success); opacity: 0.8; }

.propagation-sim { margin-top: 40px; text-align: left; padding: 30px; background: rgba(255,255,255,0.02); border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); }
.ps-label { font-size: 0.6rem; font-weight: 900; color: #fff; letter-spacing: 2px; margin-bottom: 15px; opacity: 0.8; }
.ps-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.ps-bar-fill { height: 100%; background: var(--color-accent); transition: width 1.2s ease; box-shadow: 0 0 15px var(--color-accent); }

.transfer-footer { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.crypto-note { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.65rem; font-weight: 800; color: var(--text-muted); opacity: 0.4; letter-spacing: 1.5px; text-transform: uppercase; }

/* Verification Specifics */
.transfer-verification-elite { padding: 60px 20px; position: relative; z-index: 10; }
.verification-container { max-width: 600px; margin: 0 auto; padding: 30px 40px; position: relative; border-radius: 30px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(40px); }
.verif-header { text-align: center; margin-bottom: 25px; }
.verif-header h1 { font-size: 2rem; margin: 8px 0; color: #fff; font-weight: 800; letter-spacing: -1px; }
.verif-header p { color: var(--text-muted); line-height: 1.5; font-size: 0.95rem; opacity: 0.8; }

.verification-instructions-elite { display: flex; gap: 15px; padding: 20px; background: rgba(0,0,0,0.3); border-radius: 15px; border: 1px dashed rgba(255,255,255,0.1); margin-bottom: 25px; align-items: center; }
.instr-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(56, 189, 248, 0.1); border-radius: 10px; color: var(--color-accent); }
.instr-text h3 { font-size: 1rem; margin-bottom: 4px; color: #fff; font-weight: 700; }
.instr-text p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; opacity: 0.7; }

.verif-input-main { text-align: center !important; font-size: 1.8rem !important; letter-spacing: 10px !important; font-family: 'JetBrains Mono', monospace !important; font-weight: 800 !important; margin-bottom: 25px !important; padding: 15px !important; border-color: rgba(255,255,255,0.15) !important; background: rgba(0,0,0,0.4) !important; color: #fff !important; }

/* Secure Keypad - Compact Version */
.secure-keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 280px; margin: 0 auto 25px; }
.btn-key { width: 100%; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; font-size: 1.1rem; font-weight: 800; color: #fff; cursor: pointer; transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1); }
.btn-key:hover { background: #fff; color: var(--color-primary); transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-key:active { transform: scale(0.95); opacity: 0.8; }

/* Receipt Architecture */
.receipt-container { max-width: 550px; width: 100%; padding: 60px; border-radius: 40px; text-align: center; position: relative; overflow: hidden; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); }
.receipt-container::after { content: "SECURE"; position: absolute; top: 10%; right: -15%; font-size: 10rem; font-weight: 900; color: rgba(255,255,255,0.02); transform: rotate(-25deg); pointer-events: none; }

.verification-qr-wrap { margin-bottom: 40px; display: flex; justify-content: center; }
.v-qr-inner { display: flex; align-items: center; gap: 20px; padding: 20px; background: rgba(0,0,0,0.3); border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.v-qr-text { text-align: left; }
.v-qr-text strong { display: block; font-size: 0.65rem; color: var(--color-accent); letter-spacing: 1px; margin-bottom: 5px; }

.receipt-title { font-size: 2.22rem; margin-bottom: 12px; font-weight: 800; color: #fff; }
.receipt-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 45px; opacity: 0.7; }
.receipt-status-banner { background: rgba(56, 189, 248, 0.05); border: 1px dashed rgba(56, 189, 248, 0.2); padding: 20px; border-radius: 16px; margin-bottom: 45px; backdrop-filter: blur(10px); }
.rsb-label { font-size: 0.6rem; color: var(--color-accent); font-weight: 800; letter-spacing: 3px; margin-bottom: 8px; }
.rsb-value { font-size: 0.8rem; font-weight: 800; color: #fff; letter-spacing: 0.5px; }

.receipt-row { display: flex; justify-content: space-between; padding: 15px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
.receipt-row:last-child { border-bottom: none; }
.r-label { color: var(--text-muted); font-weight: 500; }
.r-val { color: #fff; font-weight: 700; }
.elite-amount { font-size: 1.8rem; color: #fff !important; font-weight: 900; letter-spacing: -0.5px; }

@media (max-width: 900px) {
    .form-row-grid { grid-template-columns: 1fr; }
    .transfer-container { padding: 40px 15px; }
    .verif-input-main { font-size: 1.4rem !important; letter-spacing: 4px !important; }
    .clearance-flow { gap: 10px; }
    .flow-label { display: none; }
}

@media print {
    .no-print { display: none !important; }
    .print-only { display: block !important; }
    body { background: #fff !important; color: #000 !important; }
}
.print-only { display: none; }

/* ===================== V3 UNIVERSAL ARCHITECTURE ===================== */
.dashboard-wrapper-v3 { display: flex; height: 100vh; width: 100%; overflow: hidden; background: #070914; }
.dashboard-main-v3 { flex: 1; display: flex; flex-direction: column; overflow: hidden; position: relative; }

/* Dashboard Sidebar v2 adjustments for v3 wrapper */
.dashboard-aside-v2 { height: 100%; width: 280px; flex-shrink: 0; }

/* Global UI Utilities */
.btn-xl { padding: 14px 25px; font-size: 0.95rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.btn-block { width: 100%; display: flex; align-items: center; justify-content: center; }
.btn-glow { position: relative; overflow: hidden; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.btn-glow::after { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%); opacity: 0; transition: 0.5s; pointer-events: none; }
.btn-glow:hover { box-shadow: 0 0 30px var(--color-accent); transform: translateY(-2px); }
.btn-glow:hover::after { opacity: 1; transform: translate(10%, 10%); }

.glass-panel { background: rgba(10, 31, 68, 0.4); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.ticker-item { font-size: 0.65rem; font-family: 'JetBrains Mono', monospace; font-weight: 700; color: #fff; opacity: 0.6; display: flex; align-items: center; gap: 8px; }
.ticker-item minor.v-up { color: var(--color-success); }
.ticker-item minor.v-down { color: #ef4444; }

@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== ELITE V4 MOBILE OPTIMIZATION ENGINE ===================== */

@media (max-width: 1024px) {
    /* 1. Landing Portal V4 Refinements */
    .hero-v4 { flex-direction: column; text-align: center; gap: 40px; padding: 100px 20px 60px; }
    .hero-v4-content { display: flex; flex-direction: column; align-items: center; }
    .hero-title-v4 { font-size: 3rem !important; line-height: 1.1; }
    .hero-subtext-v4 { font-size: 1rem; max-width: 100%; }
    .hero-actions-v4 { flex-direction: column; width: 100%; gap: 15px; }
    .btn-hero-v4 { width: 100%; border-radius: 12px; }
    
    .hero-visual-v4 { width: 100%; padding: 0; }
    .h-visual-container { border-radius: 20px; }
    .h-tel { font-size: 0.5rem; padding: 6px 10px; }
    .t-1 { top: 20px; left: 20px; }
    .t-2 { top: 70px; right: 20px; }
    .t-3 { bottom: 20px; }

    /* 2. Bento Grid Collapsing */
    .bento-grid-v4 { grid-template-columns: 1fr !important; gap: 20px; }
    .b-tall, .b-wide { grid-column: auto !important; grid-row: auto !important; }
    .bc-content-row { flex-direction: column; text-align: center; gap: 30px; }
    .bc-visual-stats { width: 100%; grid-template-columns: 1fr 1fr; }
    .bento-card { padding: 30px !important; border-radius: 24px; }
    
    /* 3. Operational Hubs V4 */
    .hubs-grid-v4 { grid-template-columns: 1fr !important; gap: 40px; text-align: center; }
    .hub-visual-v4 { height: 350px; }
    .hub-card-v4 { width: 90%; }
    .hub-card-v4.second { width: 80%; }
}

@media (max-width: 768px) {
    /* 4. Auth Gateway V4 (Login / Register) */
    .auth-elite-v4 { flex-direction: column; height: auto; min-height: 100vh; }
    .auth-nebula-side { display: none !important; } /* High-fidelity background hidden for performance */
    .auth-terminal-side-v4 { flex: 1; padding: 20px; }
    .terminal-container-v4 { padding: 30px 20px !important; border-radius: 20px; box-shadow: none; background: transparent !important; border: none !important; }
    .form-header-v4 h1 { font-size: 1.8rem !important; }
    .terminal-stepper-v4 { gap: 8px; margin-bottom: 30px; }
    .ts-step { width: 30px; height: 30px; font-size: 0.65rem; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .nav-row-v4 { flex-direction: column-reverse; gap: 15px; }
    .btn-terminal-nav-v4, .btn-terminal-auth-v4, .btn-terminal-back-v4 { width: 100%; flex: none; height: 55px; font-size: 0.9rem; }
    
    /* 5. Transfer & Clearance V3 */
    .transfer-clearance-v3 { padding: 20px; }
    .system-status-ribbon { flex-wrap: wrap; justify-content: center; gap: 10px; height: auto; padding: 15px; }
    .instruction-v3 h2 { font-size: 1.6rem !important; }
    .keypad-v3 { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; padding: 0; }
    .key-v3 { height: 65px; font-size: 1.3rem; }
    .step-actions-v3 { flex-direction: column; gap: 15px; }
    .btn-v3 { width: 100%; height: 55px; }
    
    /* 6. Settlement Receipt V4 (Certificate) */
    .receipt-container-v4 { padding: 40px 20px !important; border-radius: 0; margin-top: 0; border: none; }
    .receipt-header-v4 { flex-direction: column; gap: 25px; text-align: center; }
    .rh-logo-wrap { flex-direction: column; align-items: center; }
    .rh-titles-v4 { text-align: center; }
    .rh-bank-v4 { font-size: 1.2rem !important; }
    
    .ledger-grid-v4 { grid-template-columns: 1fr; gap: 15px; }
    .lg-item { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .lg-item:last-child { border: none; }
    
    .footer-actions-v4 { flex-direction: column; gap: 15px; }
    .btn-receipt-v4 { width: 100%; border-radius: 12px; }

    /* 7. Liquidity Terminal (Dashboard) */
    .lt-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .lt-balance { font-size: 2.2rem !important; }
    .lt-stats-grid { grid-template-columns: 1fr; padding-top: 30px; gap: 20px; }
    .lts-item { border-left: 2px solid var(--accent-glow); padding-left: 15px; }
}

@media (max-width: 480px) {
    /* 8. Extreme Phone Scaling */
    .hero-title-v4 { font-size: 2.2rem !important; }
    .section-header-v4 h2 { font-size: 2rem !important; }
    .hh-grid { grid-template-columns: 1fr 1fr; gap: 20px; text-align: center; }
    .hh-item { font-size: 0.65rem; }
    
    .final-uplink h2 { font-size: 2.2rem !important; }
    .uplink-actions { flex-direction: column; padding: 0 20px; }
    
    .institutional-strip { font-size: 0.6rem; letter-spacing: 1px; flex-direction: column; gap: 5px; }
    .institutional-strip .divider { display: none; }
    
    .liquidity-ticker-v4 { padding: 10px 0; }
    .ticker-item { font-size: 0.6rem; gap: 5px; }
}

/* Fix for main-scroll-area overlap */
@media (max-width: 992px) {
    .main-scroll-area { padding-bottom: 80px; }
    .fixed-header { position: sticky; top: 0; background: var(--bg-main); border-bottom: 1px solid var(--border-color); }
}
@media (max-width: 1024px) { .split-section { flex-direction: column !important; text-align: center; gap: 40px; } .split-image { width: 100%; max-width: 500px; margin: 0 auto; } .split-text { width: 100%; } .service-stats-grid { justify-content: center; } } @media (max-width: 768px) { .services-v3-grid { grid-template-columns: 1fr !important; gap: 30px; } .s-v3-card { padding: 30px !important; } .section-head h2 { font-size: 2.5rem !important; } .page-hero { padding: 80px 20px; text-align: center; } .reveal-title { font-size: 2.22rem !important; } .reveal-subtitle { font-size: 1rem !important; } .breadcrumb { justify-content: center; } } html, body { width: 100%; overflow-x: hidden !important; } * { -webkit-tap-highlight-color: transparent; }
