/* C:\laragon\www\frost\bank-sim\assets\css\main.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #f5f5f5; /* Champagne Silver */
    --bg-secondary: #ffffff; /* White Luxe */
    --bg-tertiary: #ebebeb;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(12, 26, 48, 0.04);
    --text-primary: #0c1a30; /* Sovereign Navy */
    --text-secondary: #5a6b82;
    --primary-gradient: linear-gradient(135deg, #0c1a30 0%, #1a3a5f 100%);
    --accent-gold: linear-gradient(135deg, #decba4 0%, #a68d5b 100%); /* Champagne Gold */
    --accent-glow: rgba(12, 26, 48, 0.02);
    --card-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.main-content { padding-top: 80px; }

/* ===================== PREMIUM COMPONENTS ===================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    box-shadow: var(--card-shadow);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(11, 26, 74, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(11, 26, 74, 0.25);
    filter: brightness(1.1);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================== HEADER & NAV ===================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 6%;
    position: fixed;
    width: 100%; top: 0;
    z-index: 1000;
    transition: all 0.35s ease;
}
.main-header.scrolled {
    background: rgba(10, 12, 22, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
    padding: 14px 6%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
body.light-mode .main-header.scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.logo {
    font-size: 26px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--text-primary); text-decoration: none;
    display: flex; align-items: center; gap: 2px; white-space: nowrap;
}
.logo span, .footer-logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex; align-items: center; gap: 28px;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none; font-weight: 500; font-size: 15px;
    transition: color 0.25s ease;
    position: relative; padding-bottom: 2px;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) { color: var(--text-primary); }
.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px; z-index: 1100;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text-primary); border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== BUTTONS ===================== */
.btn {
    padding: 12px 28px; border-radius: 30px; font-weight: 600;
    font-size: 15px; cursor: pointer; transition: all 0.3s ease;
    text-decoration: none; display: inline-block; border: none;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
}
.btn-outline:hover { background: var(--surface-border); }
.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: 20px; }

/* Theme toggle */
.theme-toggle {
    background: none; border: none; color: var(--text-primary);
    cursor: pointer; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    transition: background 0.3s;
}
.theme-toggle:hover { background: var(--surface-border); }

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 100px 6% 80px; position: relative; gap: 40px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
    display: inline-block; padding: 6px 16px; border-radius: 30px;
    border: 1px solid rgba(0,240,255,0.3); background: rgba(0,240,255,0.06);
    color: var(--accent); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease forwards;
}
.hero-content h1 {
    font-size: 4.2rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800;
    animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0;
}
.hero-content h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content > p {
    font-size: 1.15rem; color: var(--text-secondary);
    margin-bottom: 36px; line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.25s forwards; opacity: 0;
}
.hero-buttons {
    display: flex; gap: 16px;
    animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0;
}
.hero-stats {
    display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0;
}
.hero-stats .stat strong {
    display: block; font-size: 1.5rem; font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stats .stat span {
    font-size: 0.8rem; color: var(--text-secondary);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-visual {
    flex: 1; display: flex; justify-content: center; align-items: center;
    position: relative;
    animation: fadeInUp 1s ease 0.5s forwards; opacity: 0;
}

/* Card mockup */
.card-mockup {
    width: 400px; height: 250px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px; padding: 30px; position: relative;
    transform: perspective(1000px) rotateY(-12deg) rotateX(8deg);
    box-shadow: -20px 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}
.card-mockup:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.card-chip { width: 50px; height: 40px; background: linear-gradient(135deg, #ffd700, #daa520); border-radius: 8px; margin-bottom: 28px; }
.card-number { font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; color: #fff; }
.card-details { display: flex; justify-content: space-between; color: rgba(255,255,255,0.75); text-transform: uppercase; font-size: 12px; }

.floating-element {
    position: absolute; width: 60px; height: 60px; border-radius: 50%;
    background: var(--primary-gradient); filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}
.fe-1 { top: -20px; right: 50px; animation-delay: 0s; }
.fe-2 { bottom: -30px; left: 40px; animation-delay: 2s; width: 40px; height: 40px; }

/* ===================== SECTION BLOCK ===================== */
.section-block { padding: 80px 6%; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { font-size: 2.4rem; font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===================== FEATURE CARDS ===================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.feature-card {
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: var(--card-gradient);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    border-color: rgba(0,240,255,0.25);
}
.feature-icon {
    width: 58px; height: 58px; border-radius: 14px;
    background: rgba(0,240,255,0.08);
    display: flex; justify-content: center; align-items: center;
    color: var(--accent); margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 700; }
.feature-card p { color: var(--text-secondary); line-height: 1.65; font-size: 0.95rem; }
.card-link {
    display: inline-block; margin-top: 16px; font-size: 0.88rem;
    font-weight: 600; color: var(--accent); text-decoration: none;
    transition: letter-spacing 0.2s ease;
}
.card-link:hover { letter-spacing: 0.5px; }

/* ===================== CTA STRIP ===================== */
.cta-strip {
    margin: 0 6% 80px;
    padding: 56px 60px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 32px; flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(0,81,255,0.1), rgba(0,240,255,0.05));
    border: 1px solid rgba(0,240,255,0.12);
}
.cta-content h2 { font-size: 1.8rem; margin-bottom: 8px; }
.cta-content p { color: var(--text-secondary); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================== PAGE HERO ===================== */
.page-hero { position: relative; padding: 100px 6% 80px; overflow: hidden; }
.page-hero-content { max-width: 680px; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }
.page-hero h1 { font-size: 3.4rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.page-hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-content > p { font-size: 1.08rem; color: var(--text-secondary); line-height: 1.7; max-width: 540px; }

/* ===================== ABOUT PAGE ===================== */
.section-divider { width: 50px; height: 4px; background: var(--primary-gradient); border-radius: 2px; margin: 16px 0 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { font-size: 2rem; font-weight: 700; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { padding: 28px 24px; text-align: center; border-radius: 16px; }
.about-stat strong {
    display: block; font-size: 1.9rem; font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 4px;
}
.about-stat span { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card { padding: 32px 26px; border-radius: 20px; transition: transform 0.3s ease; }
.team-card:hover { transform: translateY(-6px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card > span { display: block; font-size: 0.78rem; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ===================== SERVICES PAGE ===================== */
.services-list { display: flex; flex-direction: column; gap: 22px; }
.service-row {
    display: flex; align-items: flex-start; gap: 28px;
    padding: 36px 40px; border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-row:hover { transform: translateY(-4px); border-color: rgba(0,240,255,0.22); }
.service-icon {
    flex-shrink: 0; width: 64px; height: 64px; border-radius: 16px;
    background: rgba(0,240,255,0.07);
    display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.service-body { flex: 1; }
.service-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-body p { color: var(--text-secondary); line-height: 1.7; font-size: 0.94rem; margin-bottom: 14px; }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tags span { padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; border: 1px solid rgba(0,240,255,0.2); color: var(--accent); background: rgba(0,240,255,0.05); }
.service-btn { flex-shrink: 0; align-self: center; white-space: nowrap; }

/* ===================== CONTACT PAGE ===================== */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form-wrapper { padding: 44px 40px; border-radius: 24px; }
.contact-form-wrapper h2 { font-size: 1.5rem; margin-bottom: 28px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.contact-form label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(255,255,255,0.04); border: 1px solid var(--surface-border);
    border-radius: 10px; padding: 12px 16px; color: var(--text-primary);
    font-size: 0.95rem; font-family: 'Outfit', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: rgba(0,240,255,0.5);
    box-shadow: 0 0 0 3px rgba(0,240,255,0.07);
}
.contact-form textarea { resize: vertical; }
.contact-form select option { background: #0d0f1a; }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px 20px; border-radius: 16px; transition: transform 0.25s ease; }
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(0,240,255,0.07); display: flex; align-items: center; justify-content: center; }
.contact-info-card h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.93rem; margin-bottom: 2px; }
.contact-info-card small { font-size: 0.8rem; color: var(--text-secondary); }

/* ===================== AUTH FORMS ===================== */
.auth-container {
    max-width: 480px; margin: 60px auto; padding: 44px 40px;
    background: var(--surface-color); backdrop-filter: blur(16px);
    border: 1px solid var(--surface-border); border-radius: 24px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}
.auth-container h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.auth-form .form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.auth-form label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); margin-bottom: 8px; }
.auth-form input, .auth-form textarea, .auth-form select {
    background: rgba(255,255,255,0.04); border: 1px solid var(--surface-border);
    border-radius: 10px; padding: 12px 16px; color: var(--text-primary);
    font-family: 'Outfit', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-form input:focus, .auth-form textarea:focus {
    outline: none; border-color: rgba(0,240,255,0.5);
    box-shadow: 0 0 0 3px rgba(0,240,255,0.07);
}
.auth-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-links { text-align: center; margin-top: 18px; font-size: 0.9rem; color: var(--text-secondary); }
.auth-links a { color: var(--accent); text-decoration: none; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-danger  { background: rgba(255,50,50,0.1); border: 1px solid rgba(255,50,50,0.3); color: #ff6b6b; }
.alert-success { background: rgba(0,240,100,0.1); border: 1px solid rgba(0,240,100,0.3); color: #00f064; }

/* ===================== FOOTER ===================== */
.main-footer { background: #06080f; border-top: 1px solid rgba(255,255,255,0.07); padding: 72px 6% 0; position: relative; z-index: 1; }
body.light-mode .main-footer { background: #edf2f7; border-top: 1px solid rgba(0,0,0,0.07); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start; }
body.light-mode .footer-inner { border-color: rgba(0,0,0,0.08); }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; color: var(--text-primary); margin-bottom: 16px; display: inline-flex; align-items: center; }
.footer-brand p { color: var(--text-secondary); line-height: 1.75; font-size: 0.94rem; max-width: 290px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s; }
body.light-mode .social-icon { border-color: rgba(0,0,0,0.12); }
.social-icon:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 16px rgba(0,240,255,0.2); transform: translateY(-3px); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: inline-block; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: var(--text-secondary); text-decoration: none; font-size: 0.93rem; transition: color 0.2s ease, padding-left 0.2s ease; display: inline-block; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); font-size: 0.91rem; line-height: 1.55; }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; stroke: var(--accent); opacity: 0.9; }
.footer-contact li span { word-break: break-word; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: rgba(148,163,184,0.7); font-size: 0.84rem; }
.footer-legal { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: rgba(148,163,184,0.7); text-decoration: none; font-size: 0.84rem; white-space: nowrap; transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent); }

/* ===================== DASHBOARD ===================== */
.dashboard-header { display: flex; justify-content: space-between; align-items: center; padding: 0 6% 36px; flex-wrap: wrap; gap: 16px; }
.dashboard-header h2 { font-size: 1.5rem; font-weight: 700; }
.account-summary { padding: 0 6% 40px; }
.balance-card { padding: 36px 40px; border-radius: 20px; }
.balance-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 12px; }
.balance-card .amount { font-size: 3rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.balance-card .account-number, .balance-card .status { color: var(--text-secondary); font-size: 0.9rem; }
.transactions-section { padding: 0 6% 80px; }
.transactions-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.no-data { color: var(--text-secondary); text-align: center; padding: 40px; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.data-table th { padding: 12px 16px; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); border-bottom: 1px solid var(--surface-border); }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--surface-border); color: var(--text-primary); vertical-align: middle; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.text-success { color: #00f064; }
.text-danger  { color: #ff6b6b; }
.text-muted   { color: var(--text-secondary); font-size: 0.82rem; }

/* Badges */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge-active   , .badge-completed  { background: rgba(0,240,100,0.12); color: #00f064; border: 1px solid rgba(0,240,100,0.2); }
.badge-pending                       { background: rgba(255,200,0,0.12); color: #ffc800; border: 1px solid rgba(255,200,0,0.2); }
.badge-processing                    { background: rgba(0,153,255,0.12); color: #0099ff; border: 1px solid rgba(0,153,255,0.2); }
.badge-suspended, .badge-failed      { background: rgba(255,80,80,0.12); color: #ff6b6b; border: 1px solid rgba(255,80,80,0.2); }
.badge-info                          { background: rgba(139,92,246,0.12); color: #8b5cf6; border: 1px solid rgba(139,92,246,0.2); }

/* ===================== ADMIN ===================== */
.admin-body { background: #060810; color: var(--text-primary); }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: #08091a; border-right: 1px solid rgba(255,255,255,0.06); padding: 0; flex-shrink: 0; display: flex; flex-direction: column; }
.sidebar-header { padding: 28px 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-header h2 { font-size: 1.1rem; font-weight: 700; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sidebar-nav { display: flex; flex-direction: column; padding: 12px 0; flex: 1; }
.sidebar-nav a { padding: 13px 24px; color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: all 0.2s ease; border-left: 3px solid transparent; }
.sidebar-nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); border-left-color: var(--accent); }
.sidebar-nav a.text-danger { color: #ff6b6b; margin-top: auto; }
.admin-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.admin-topbar { padding: 20px 32px; background: #08091a; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.admin-topbar h3 { font-size: 1rem; font-weight: 600; }
.admin-topbar .user-info { font-size: 0.88rem; color: var(--text-secondary); }
.admin-content { padding: 32px; overflow-y: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.stat-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 24px 20px; }
.stat-card h3 { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 10px; }
.stat-number { font-size: 2rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-pending .stat-number { background: linear-gradient(135deg, #ffc800, #ff9000); -webkit-background-clip: text; background-clip: text; }
.admin-section { margin-bottom: 40px; }
.admin-section h3, .admin-header-flex h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.admin-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.action-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-login-container { max-width: 420px; }

/* ===================== TRANSFER ===================== */
.transfer-container, .transfer-verification-container { max-width: 600px; margin: 40px auto; padding: 40px; background: var(--surface-color); backdrop-filter: blur(16px); border: 1px solid var(--surface-border); border-radius: 24px; }
.transfer-container h2, .transfer-verification-container h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }
.transfer-form .form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.transfer-form label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-secondary); margin-bottom: 8px; }
.transfer-form input, .transfer-form select { background: rgba(255,255,255,0.04); border: 1px solid var(--surface-border); border-radius: 10px; padding: 12px 16px; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 0.95rem; transition: border-color 0.2s; }
.transfer-form input:focus { outline: none; border-color: rgba(0,240,255,0.5); }
.balance-display { font-size: 1.8rem; font-weight: 800; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 4px; }
.verification-instructions { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }
}
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 130px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 48px; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(8,9,26,0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: flex-start;
        padding: 40px 32px; gap: 28px;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 1050; border-left: 1px solid var(--surface-border);
    }
    .nav-links.open { right: 0; }
    .nav-hamburger { display: flex; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .service-row { flex-direction: column; }
    .service-btn { width: 100%; text-align: center; }
    .cta-strip { flex-direction: column; text-align: center; padding: 40px 32px; }
    .cta-actions { justify-content: center; }
    .page-hero h1 { font-size: 2.6rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
}
@media (max-width: 600px) {
    .hero-content h1 { font-size: 2.5rem; }
    .card-mockup { width: 100%; max-width: 340px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .auth-form .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 28px 20px; }
    .auth-container { padding: 32px 24px; margin: 32px 16px; }
    .admin-sidebar { display: none; }
}

/* ===================== FAQ PAGE ===================== */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; background: var(--surface-color); border: 1px solid var(--surface-border); border-radius: 16px; padding: 24px; backdrop-filter: blur(12px); }
.faq-sidebar h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.faq-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.faq-cat-link { display: block; padding: 9px 12px; border-radius: 8px; color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.2s ease; }
.faq-cat-link:hover, .faq-cat-link.active-cat { color: #fff; background: rgba(255,255,255,0.07); border-left: 2px solid #fff; padding-left: 14px; }
.faq-content { display: flex; flex-direction: column; gap: 48px; }
.faq-group { display: flex; flex-direction: column; gap: 12px; }
.faq-group-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--surface-border); }
.faq-item { border-radius: 14px; overflow: hidden; transition: border-color 0.25s ease; }
.faq-item.open { border-color: rgba(0,240,255,0.25); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 600; text-align: left; cursor: pointer; transition: color 0.2s ease; }
.faq-question:hover { color: #fff; }
.faq-chevron { flex-shrink: 0; color: var(--text-secondary); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p, .faq-answer ul { color: var(--text-secondary); line-height: 1.8; font-size: 0.94rem; padding: 0 24px 20px; }
.faq-cta { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px; border-radius: 16px; gap: 20px; flex-wrap: wrap; border-color: rgba(0,240,255,0.15); background: linear-gradient(135deg,rgba(0,81,255,0.08),rgba(0,240,255,0.04)); }
.faq-cta p { font-size: 1.05rem; font-weight: 600; }

/* ===================== LEGAL PAGES ===================== */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-sidebar { position: sticky; top: 100px; background: var(--surface-color); border: 1px solid var(--surface-border); border-radius: 16px; padding: 24px; backdrop-filter: blur(12px); }
.legal-sidebar h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.legal-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.legal-sidebar ul li a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; transition: all 0.2s ease; }
.legal-sidebar ul li a:hover { color: #fff; background: rgba(255,255,255,0.07); padding-left: 16px; border-left: 2px solid #fff; }
.legal-content { display: flex; flex-direction: column; gap: 48px; }
.legal-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--surface-border); }
.legal-section p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 12px; font-size: 0.94rem; }
.legal-section ul { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 10px; }
.legal-section ul li { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.6; padding-left: 18px; position: relative; }
.legal-section ul li::before { content: '✓'; position: absolute; left: 0; color: #fff; font-size: 0.8rem; }
.legal-link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); transition: border-color 0.2s; }
.legal-link:hover { border-color: var(--accent); }
.legal-contact-box { padding: 24px 28px; border-radius: 14px; font-size: 0.94rem; line-height: 1.8; color: var(--text-secondary); margin-top: 8px; }
.legal-contact-box strong { display: block; color: var(--text-primary); margin-bottom: 4px; }
.cookie-table-wrapper { overflow-x: auto; margin: 16px 0; border-radius: 10px; border: 1px solid var(--surface-border); }
.cookie-table td, .cookie-table th { white-space: nowrap; }

/* ===================== RESPONSIVE: FAQ & LEGAL ===================== */
@media (max-width: 968px) {
    .faq-layout, .legal-layout { grid-template-columns: 1fr; }
    .faq-sidebar, .legal-sidebar { position: static; }
    .faq-sidebar ul, .legal-sidebar ul { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .faq-cat-link, .legal-sidebar ul li a { padding: 7px 14px; border-radius: 20px; border: 1px solid var(--surface-border); }
    .faq-cat-link:hover, .faq-cat-link.active-cat, .legal-sidebar ul li a:hover { border-color: rgba(0,240,255,0.4); padding-left: 14px; }
}

/* ===================== SECURITY PAGE ===================== */
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin: 40px 0; }
.security-intro h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 24px; }
.security-intro p { color: var(--text-secondary); line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; }

.clearance-chain-visual { display: flex; flex-direction: column; gap: 16px; position: relative; }
.chain-step { display: flex; align-items: flex-start; gap: 24px; padding: 24px 28px; border-radius: 18px; border: 1px solid var(--surface-border); transition: transform 0.3s ease, border-color 0.3s ease; }
.chain-step:hover { transform: translateX(8px); border-color: rgba(0,240,255,0.3); }

.step-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--primary-gradient); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; color: #fff; box-shadow: 0 4px 12px rgba(0,240,255,0.25); }
.chain-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.chain-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

@media (max-width: 968px) {
    .security-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* ===================== PREMIUM HERO UPGRADE ===================== */
.hero-premium {
    position: relative;
    padding: 140px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 81, 255, 0.03) 0%, transparent 40%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1.2; }
.hero-visual { flex: 0.8; position: relative; }

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-trust-metrics {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--surface-border);
}

.metric strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.metric span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.card-floating-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: card-float 6s infinite ease-in-out;
}

@keyframes card-float {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(-20px); }
}

.card-mockup-img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--accent-rgb), 0.15);
}

/* ===================== HOME PAGE ADDITIONS ===================== */
.trust-logos {
    padding: 60px 0;
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.logo-scroll {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    opacity: 0.4;
    filter: grayscale(1);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 3px;
    white-space: nowrap;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 100px;
}

.split-image { flex: 1; position: relative; }
.split-text { flex: 1; }

.app-mockup-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.5);
    border: 1px solid var(--surface-border);
}

.image-accent-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: var(--primary-gradient);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
}

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

.feature-list-simple {
    list-style: none;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list-simple li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.feature-list-simple li svg { color: var(--accent); }

/* ===================== FEATURE GRID MODERN ===================
/* ===================== PREMIUM HERO UPGRADES ===================== */
.hero-premium {
    position: relative; padding: 140px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(var(--accent-rgb), 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 81, 255, 0.03) 0%, transparent 40%);
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute; top: -10%; right: -5%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px); z-index: 0;
}

.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; gap: 80px; position: relative; z-index: 1;
}

.hero-content h1 { font-size: 4rem; line-height: 1.1; font-weight: 800; margin-bottom: 24px; }
.hero-content h1 span { background: var(--primary-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
.hero-content p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 40px; max-width: 580px; }

.hero-trust-metrics { display: flex; gap: 40px; margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--surface-border); }
.metric strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.metric span { font-size: 0.82rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.card-floating-wrapper { position: relative; transition: transform 0.5s ease; animation: card-float 6s infinite ease-in-out; }
@keyframes card-float { 0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(0); } 50% { transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(-20px); } }
.card-mockup-img { width: 100%; max-width: 480px; border-radius: 20px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--accent-rgb), 0.15); }

/* ===================== HOME PAGE ADDITIONS ===================== */
.trust-logos { padding: 60px 0; border-top: 1px solid var(--surface-border); border-bottom: 1px solid var(--surface-border); }
.logo-scroll { display: flex; justify-content: space-around; align-items: center; gap: 60px; opacity: 0.4; filter: grayscale(1); font-weight: 800; font-size: 1.1rem; letter-spacing: 3px; white-space: nowrap; }

.split-section { display: flex; align-items: center; gap: 100px; }
.split-image { flex: 1; position: relative; }
.split-text { flex: 1; }
.app-mockup-img { width: 100%; border-radius: 30px; box-shadow: 0 50px 120px rgba(0,0,0,0.5); border: 1px solid var(--surface-border); }
.image-accent-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: var(--primary-gradient); filter: blur(100px); opacity: 0.1; z-index: -1; }

.section-title-sm { font-size: 0.85rem; color: #FFFFFF; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; margin-bottom: 16px; display: inline-block; }
.feature-list-simple { list-style: none; margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.feature-list-simple li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-secondary); }
.feature-list-simple li svg { color: var(--accent); }

/* ===================== FEATURE GRID MODERN ===================== */
.feature-grid-modern { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card-modern { padding: 40px; border-radius: 24px; transition: transform 0.3s ease, border-color 0.3s ease; }
.feature-card-modern:hover { transform: translateY(-10px); border-color: rgba(0, 240, 255, 0.4); }
.feature-icon-wrapper { width: 56px; height: 56px; background: rgba(0, 240, 255, 0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 24px; }

/* ===================== SECURITY BANNER ===================== */
.security-banner { display: flex; justify-content: space-between; align-items: center; padding: 48px 60px; border-radius: 24px; border: 1px solid rgba(var(--accent-rgb), 0.1); background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(0,240,255,0.03)); }
.security-banner-info h3 { font-size: 1.5rem; margin-bottom: 8px; font-weight: 700; }
.security-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.s-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.03); padding: 12px 20px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; }

/* ===================== LUXURY CTA ===================== */
.cta-card-luxury { position: relative; padding: 120px 60px; border-radius: 40px; overflow: hidden; background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop") center/cover; text-align: center; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(13, 15, 26, 0.95), rgba(13, 15, 26, 0.6)); }
.cta-card-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-card-content h2 { font-size: 3.5rem; margin-bottom: 24px; }
.cta-card-content p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 48px; }
.cta-btn-group { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* ===================== SERVICES & SECURITY CLEARANCE ===================== */
.service-stats-grid { display: flex; gap: 40px; margin-top: 32px; }
.s-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: #FFFFFF; margin-bottom: 4px; }
.clearance-chain-visual-modern { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.chain-step-modern { padding: 32px 24px; text-align: center; border-radius: 20px; border: 1px solid var(--surface-border); transition: transform 0.3s ease; }
.category-title { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: 2px; }

/* ===================== UPGRADED NAVBAR ===================== */
.main-header { height: 90px; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); z-index: 1050; top: 0; position: fixed; width: 100%; }
.main-header.scrolled { height: 75px; background: rgba(10, 12, 22, 0.95); border-bottom-color: rgba(var(--accent-rgb), 0.1); }
.header-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 72px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.active { color: var(--accent) !important; }
.nav-divider { width: 1px; height: 24px; background: rgba(255, 255, 255, 0.1); margin: 0 8px; }
.btn-pill-primary { background: var(--primary-gradient); color: #fff !important; padding: 12px 28px; border-radius: 50px; font-weight: 700; box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2); }
.status-item { font-size: 0.75rem; font-weight: 700; color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.03); padding: 6px 14px; border-radius: 50px; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; background: #00f064; border-radius: 50%; box-shadow: 0 0 10px #00f064; }

/* ===================== PRELOADER ===================== */
#preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-deep); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease; }
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-logo { width: 280px; margin-bottom: 32px; animation: preloader-pulse 1.8s infinite ease-in-out; }
.preloader-bar { width: 140px; height: 3px; background: rgba(var(--accent-rgb), 0.05); margin: 0 auto; border-radius: 10px; overflow: hidden; }
.preloader-bar-fill { width: 0; height: 100%; background: var(--accent); animation: preloader-load 2s forwards ease-in-out; }

/* ===================== ELITE REGISTRATION ===================== */
.register-layout { display: grid; grid-template-columns: 400px 1fr; min-height: 100vh; background: #0a0c16; }
.register-sidebar { background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), rgba(0, 81, 255, 0.05)); border-right: 1px solid rgba(255, 255, 255, 0.05); padding: 60px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.auth-card { width: 100%; max-width: 600px; padding: 50px; border-radius: 30px; }
.step-tracker { display: flex; justify-content: space-between; margin-bottom: 50px; position: relative; }
.step-tracker::after { content: ""; position: absolute; top: 15px; left: 0; width: 100%; height: 2px; background: rgba(255, 255, 255, 0.05); z-index: 1; }
.step { 
    position: relative; z-index: 2; background: rgba(255, 255, 255, 0.03); 
    padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.08); 
    display: flex; align-items: center; justify-content: center; 
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; 
    color: rgba(255, 255, 255, 0.4); transition: all 0.3s ease; white-space: nowrap; 
}
.step.active { border-color: var(--accent); color: var(--accent); background: rgba(var(--accent-rgb), 0.05); box-shadow: 0 0 15px rgba(0, 240, 255, 0.2); }
.form-step { display: none; }
.form-step.active { display: block; animation: step-fade 0.5s ease; }

@keyframes preloader-pulse { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); } 50% { transform: scale(1.03); filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4)); } }
@keyframes preloader-load { 0% { width: 0; } 100% { width: 100%; } }
@keyframes step-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
    .header-container { padding: 0 20px; }
    .nav-links { gap: 20px; }
    .register-layout { grid-template-columns: 1fr; }
    .register-sidebar { display: none; }
    .feature-grid-modern { grid-template-columns: 1fr; }
    .split-section { flex-direction: column; gap: 40px; text-align: center; }
}

/* ===================== REGISTER FORM FIXES ===================== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.auth-card .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.auth-card label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.auth-card input, .auth-card select, .auth-card textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.auth-card input:focus, .auth-card select:focus, .auth-card textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.02);
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.1);
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-switch a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .auth-card { padding: 30px 20px; }
}

/* ===================== ELITE FORM COMPONENTS ===================== */
.category-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.1);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    text-transform: none !important;
    font-weight: 400 !important;
}

.checkbox-container input {
    position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0;
}

.checkmark {
    height: 18px; width: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: 0.2s;
    position: relative;
}

.checkbox-container:hover .checkmark { border-color: var(--accent); }
.checkbox-container input:checked ~ .checkmark { background: var(--accent); border-color: var(--accent); }
.checkmark:after {
    content: ""; position: absolute; display: none;
    left: 6px; top: 2px; width: 5px; height: 10px;
    border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.checkbox-container input:checked ~ .checkmark:after { display: block; }

/* ===================== LAYOUT BALANCING ===================== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.page-hero-content p {
    margin-left: auto;
    margin-right: auto;
}

/* Register Balance Fix */
.register-layout {
    grid-template-columns: minmax(380px, 1fr) 1.5fr;
}

.register-content {
    background: radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.02) 0%, transparent 40%);
}

.auth-card {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1600px) {
    .register-layout { grid-template-columns: 500px 1fr; }
    .register-content { padding: 100px; }
}

@media (max-width: 1200px) {
    .register-layout { grid-template-columns: 350px 1fr; }
}

/* ===================== REGISTER PAGE DEPT & ACCENTS ===================== */
.register-sidebar { position: relative; overflow: hidden; }
.sidebar-glow {
    position: absolute; bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.register-bg-accent {
    position: absolute; top: 0; right: 0; width: 100%; height: 100%;
    background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop") center/cover;
    opacity: 0.05; filter: grayscale(1);
    z-index: -1;
}

.secure-badge {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(var(--accent-rgb), 0.05);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    padding: 10px 16px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px;
    color: #4df3ff; margin-bottom: 32px;
    width: fit-content; margin-left: auto; margin-right: auto;
}

.auth-card .form-group input.error { border-color: #ff3e3e; background: rgba(255, 62, 62, 0.02); }

.benefit-cards .b-card { transition: transform 0.3s ease; }
.benefit-cards .b-card:hover { transform: translateX(10px); }

/* ===================== SIDEBAR ALIGNMENT ===================== */
.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.sidebar-logo {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.sidebar-brand-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.sidebar-mission-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 60px;
}

.benefit-list-elite {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.b-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================== DASHBOARD UPGRADE ===================== */
.dashboard-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 90px);
    background: #0a0c16;
}

.dashboard-aside {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
}

.user-profile-sm {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    padding: 0 8px;
}

.avatar-circle {
    width: 44px; height: 44px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #fff; font-size: 1.1rem;
}

.user-profile-sm h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.user-profile-sm span { font-size: 0.72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.dash-nav { display: flex; flex-direction: column; gap: 8px; }
.dash-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px; border-radius: 12px;
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.92rem; font-weight: 500;
    transition: all 0.3s ease;
}

.dash-nav a:hover, .dash-nav a.active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.dash-nav a.active { color: var(--accent); border-right: 2px solid var(--accent); border-radius: 12px 0 0 12px; }
.dash-nav hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.05); margin: 20px 0; }

.dashboard-main { padding: 48px 60px; }
.dash-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.dash-top-bar h1 { font-size: 1.8rem; font-weight: 800; }
.dash-date { font-size: 0.9rem; color: var(--text-secondary); font-weight: 600; }

.dash-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }

.premium-balance-card {
    padding: 40px; border-radius: 32px;
    background: linear-gradient(135deg, rgba(29, 33, 56, 0.6) 0%, rgba(13, 15, 26, 1) 100%);
    position: relative; overflow: hidden; margin-bottom: 32px;
}

.pb-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.pb-header span { font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; }

.pb-status {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 50px;
    background: rgba(0, 240, 100, 0.05);
    border: 1px solid rgba(0, 240, 100, 0.15);
    color: #00f064; font-size: 0.72rem; font-weight: 800;
}

.pb-amount { font-size: 3.2rem; font-weight: 800; margin-bottom: 40px; display: flex; align-items: baseline; gap: 8px; }
.pb-amount .curr { font-size: 1.8rem; color: var(--accent); opacity: 0.8; }
.pb-amount .decimal { font-size: 1rem; color: var(--text-secondary); opacity: 0.6; margin-left: 8px; }

.pb-footer { display: flex; gap: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; }
.acc-info label { display: block; font-size: 0.65rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.acc-info span { font-size: 0.9rem; font-weight: 700; font-family: "Courier New", monospace; letter-spacing: 1px; }

.quick-actions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qa-item {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    padding: 24px 16px; border-radius: 24px;
    text-decoration: none; color: #fff; transition: all 0.3s ease;
}

.qa-item:hover { transform: translateY(-5px); border-color: rgba(var(--accent-rgb), 0.3); }
.qa-icon { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.03); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); }

.transactions-container { padding: 32px; border-radius: 32px; min-height: 500px; display: flex; flex-direction: column; }
.tc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.tc-header h3 { font-size: 1.1rem; font-weight: 800; }
.view-all { font-size: 0.8rem; color: var(--accent); text-decoration: none; font-weight: 700; }

.tx-list { display: flex; flex-direction: column; gap: 16px; }
.tx-row { padding: 18px 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; display: flex; align-items: center; gap: 20px; }
.tx-date { font-size: 0.72rem; font-weight: 800; color: var(--text-secondary); text-transform: uppercase; width: 45px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.05); padding-right: 15px; }
.tx-body { flex: 1; }
.tx-ref { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; font-family: monospace; }
.tx-status { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 2px 8px; border-radius: 4px; display: inline-block; }
.tx-value { font-size: 1rem; font-weight: 800; }
.v-up { color: #00f064; }
.v-down { color: #ff6b6b; }

@media (max-width: 1100px) {
    .dashboard-wrapper { grid-template-columns: 1fr; }
    .dashboard-aside { display: none; }
    .dash-grid { grid-template-columns: 1fr; }
}

/* ===================== ELITE DASHBOARD UPGRADE ===================== */
.dashboard-aside { position: relative; overflow: hidden; padding-top: 50px; }
.sidebar-glow { position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%); filter: blur(60px); z-index: 0; pointer-events: none; }

.user-profile-sm { margin-bottom: 56px; z-index: 1; }
.user-info-text h4 { font-size: 1rem; letter-spacing: -0.2px; }
.badge-elite { font-size: 0.6rem; font-weight: 800; color: var(--accent); letter-spacing: 1.5px; margin-top: 4px; padding: 2px 8px; border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 4px; width: fit-content; background: rgba(var(--accent-rgb), 0.05); }

.pulsate { animation: elite-pulse 2.5s infinite ease-in-out; }
@keyframes elite-pulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 transparent; } 50% { opacity: 0.6; box-shadow: 0 0 8px rgba(0, 240, 255, 0.2); } }

.dash-nav .nav-icon { width: 24px; color: var(--text-secondary); transition: 0.3s; }
.dash-nav a:hover .nav-icon, .dash-nav a.active .nav-icon { color: var(--accent); transform: scale(1.1); }
.nav-spacer { height: 40px; }
.dash-nav a.text-danger:hover { color: #ff6b6b !important; background: rgba(255, 107, 107, 0.05); }

.sidebar-status-box { margin-top: auto; padding: 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); }
.status-row { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.status-row:last-child { margin-bottom: 0; }
.status-online { color: #00f064; display: flex; align-items: center; gap: 5px; font-weight: 800; }
.status-online::before { content: ""; width: 6px; height: 6px; background: #00f064; border-radius: 50%; box-shadow: 0 0 8px #00f064; }

/* Ticker Bar */
.dash-ticker-bar { height: 40px; background: rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.03); margin: -48px -60px 40px; display: flex; align-items: center; overflow: hidden; }
.ticker-content { display: flex; gap: 60px; padding: 0 60px; animation: ticker-scroll 30s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
.ticker-item minor { font-size: 0.6rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.03); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Elite Grid */
.dash-top-bar-elite { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: center; }
.welcome-text h1 { font-size: 2.22rem; font-weight: 800; margin-bottom: 8px; }
.welcome-text p { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; font-family: monospace; }
.dash-controls { display: flex; gap: 16px; }
.btn-icon-glass { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); color: #fff; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.btn-icon-glass:hover { border-color: rgba(0, 240, 255, 0.4); background: rgba(0, 240, 255, 0.03); }
.notify-dot { position: absolute; top: 12px; right: 12px; width: 6px; height: 6px; background: #ff3e3e; border-radius: 50%; box-shadow: 0 0 10px #ff3e3e; }

.dash-grid-elite { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.dash-col-alpha { display: flex; flex-direction: column; gap: 32px; }
.dash-col-beta { display: flex; flex-direction: column; gap: 32px; }

/* Main Asset Card */
.asset-card-main { padding: 44px; border-radius: 36px; background: radial-gradient(circle at 100% 0%, rgba(0, 240, 255, 0.08) 0%, transparent 60%), rgba(255, 255, 255, 0.02); }
.ac-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.ac-label { font-size: 0.72rem; font-weight: 800; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 2px; }
.ac-type { font-size: 0.75rem; font-weight: 800; color: var(--accent); background: rgba(var(--accent-rgb), 0.05); padding: 5px 12px; border-radius: 4px; border: 1px solid rgba(var(--accent-rgb), 0.15); }
.ac-balance { font-size: 4rem; font-weight: 800; margin-bottom: 48px; display: flex; align-items: baseline; gap: 12px; }
.ac-balance .symbol { font-size: 2rem; color: var(--accent); opacity: 0.8; }
.ac-balance .cur-code { font-size: 1.1rem; color: var(--text-secondary); opacity: 0.5; margin-left: 10px; }
.ac-stats { display: flex; gap: 48px; margin-bottom: 40px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.ac-stat-item label { display: block; font-size: 0.65rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 6px; }
.ac-stat-item span { font-size: 1.1rem; font-weight: 700; }
.ac-footer { display: flex; justify-content: space-between; align-items: center; font-family: monospace; font-size: 0.82rem; color: rgba(255, 255, 255, 0.35); letter-spacing: 0.5px; }

/* Mini Cards & Ledger */
.card-grid-lite { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.elite-mini-card { padding: 32px; border-radius: 28px; }
.emc-header { font-size: 0.78rem; font-weight: 800; color: var(--text-secondary); margin-bottom: 20px; }
.allocation-bar-wrap { height: 6px; position: relative; margin-bottom: 16px; border-radius: 10px; overflow: hidden; }
.a-bar { height: 100%; position: absolute; left: 0; z-index: 1; border-radius: 10px; }
.a-bar-bg { width: 100%; height: 100%; background: rgba(255, 255, 255, 0.04); }
.emc-footer { font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); }
.limit-status { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }

.ledger-container-elite { padding: 40px; border-radius: 36px; min-height: 480px; }
.le-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.le-header h3 { font-size: 1.25rem; font-weight: 800; }
.le-filters { display: flex; gap: 12px; }
.le-filters span { font-size: 0.72rem; font-weight: 800; padding: 6px 14px; border-radius: 50px; background: rgba(255, 255, 255, 0.04); cursor: pointer; transition: 0.3s; }
.le-filters span.active { background: var(--accent); color: #000; }

.le-list { display: flex; flex-direction: column; gap: 12px; }
.le-row { display: flex; align-items: center; gap: 24px; padding: 22px; border-radius: 20px; background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.04); transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.le-row:hover { transform: translateX(8px); border-color: rgba(var(--accent-rgb), 0.3); background: rgba(0, 240, 255, 0.02); }
.le-icon-box { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, 0.04); display: flex; align-items: center; justify-content: center; }
.le-icon-box.v-up { color: #00f064; background: rgba(0, 240, 100, 0.08); }
.le-icon-box.v-down { color: #ff6b6b; background: rgba(255, 107, 107, 0.08); transform: rotate(180deg); }
.le-info { flex: 1; }
.le-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.le-meta { font-size: 0.75rem; color: var(--text-secondary); font-family: monospace; }
.le-amount { font-size: 1.15rem; font-weight: 800; }

/* Banker & Security */
.private-banker-card { padding: 40px; border-radius: 36px; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(8, 9, 26, 0.95) 0%, rgba(13, 15, 26, 0.7) 100%); }
.pb-accent { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%); filter: blur(30px); }
.pb-profile { display: flex; align-items: center; gap: 20px; margin: 32px 0; }
.pb-avatar { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); padding: 3px; object-fit: cover; }
.pb-details h4 { font-size: 1.1rem; margin-bottom: 4px; }
.status-online-dot { font-size: 0.72rem; color: #00f064; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.status-online-dot::before { content: ""; width: 8px; height: 8px; background: #00f064; border-radius: 50%; box-shadow: 0 0 10px #00f064; animation: dot-glow 2s infinite ease-in-out; }
@keyframes dot-glow { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.private-banker-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; }
.pb-stats-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.p-stat span { display: block; font-size: 0.65rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.p-stat strong { font-size: 0.9rem; font-weight: 800; }

.security-health-card { padding: 32px; border-radius: 36px; }
.sh-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.sh-perc { font-size: 1.6rem; font-weight: 800; color: #00f064; text-shadow: 0 0 15px rgba(0, 240, 100, 0.2); }
.sh-grid { display: flex; gap: 12px; margin-bottom: 24px; }
.sh-item { font-size: 0.65rem; font-weight: 800; padding: 6px 12px; border-radius: 50px; display: flex; align-items: center; gap: 8px; opacity: 0.5; border: 1px solid rgba(255, 255, 255, 0.1); }
.sh-item.active { opacity: 1; color: #00f064; border-color: rgba(0, 240, 100, 0.3); background: rgba(0, 240, 100, 0.05); }
.sh-btn { display: block; text-align: center; font-size: 0.82rem; color: var(--accent); text-decoration: none; font-weight: 700; transition: letter-spacing 0.3s; }
.sh-btn:hover { letter-spacing: 1px; }

.global-presence-card { padding: 32px; border-radius: 32px; }
.gp-header { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); margin-bottom: 24px; }
.gp-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.gp-item:last-child { border: none; }
.gp-origin { font-size: 0.85rem; font-weight: 600; }
.gp-ip, .gp-time { font-size: 0.75rem; color: var(--text-secondary); font-family: monospace; }

/* ===================== LOGGED-IN GLOBAL OVERRIDES ===================== */
body.is-logged-in {
    background: #0a0c16;
}

body.is-logged-in .main-header {
    background: rgba(10, 12, 22, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 70px;
}

body.is-logged-in .main-content {
    padding-top: 70px;
}

body.is-logged-in .nav-welcome {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-right: 15px;
}

body.is-logged-in .nav-welcome strong {
    color: var(--accent);
}

/* Fix sidebar alignment with minimal header */
.is-logged-in .dashboard-aside {
    height: calc(100vh - 70px);
    position: sticky;
    top: 70px;
}

.is-logged-in .dashboard-wrapper {
    min-height: calc(100vh - 70px);
}

/* ===================== LANDING PAGE V2 UPGRADE ===================== */
.landing-page-elite { background: #0a0c16; overflow: hidden; }

.hero-premium-v2 { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 100px; padding-bottom: 120px; }
.hero-v2-container { max-width: 1400px; margin: 0 auto; width: 100%; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.parallax-glow-1 { position: absolute; top: -10%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%); filter: blur(100px); pointer-events: none; }
.parallax-glow-2 { position: absolute; bottom: 10%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0, 100, 255, 0.1) 0%, transparent 70%); filter: blur(80px); pointer-events: none; }

.hero-reveal-top { display: flex; gap: 12px; margin-bottom: 32px; animation: fadeInUp 1s ease forwards; }
.reveal-badge { font-size: 0.65rem; font-weight: 800; padding: 6px 14px; border-radius: 50px; background: rgba(var(--accent-rgb), 0.05); border: 1px solid rgba(var(--accent-rgb), 0.15); color: var(--accent); letter-spacing: 1.5px; }
.reveal-badge.secondary { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); color: var(--text-secondary); }

.elite-reveal-title { font-size: 5rem; font-weight: 800; line-height: 0.95; letter-spacing: -2px; margin-bottom: 32px; animation: fadeInUp 1s ease 0.2s forwards; opacity: 0; }
.gradient-text { 
    background: linear-gradient(135deg, #0c1a30 0%, #1a3a5f 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.elite-reveal-sub { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; max-width: 600px; margin-bottom: 48px; animation: fadeInUp 1s ease 0.4s forwards; opacity: 0; }

.hero-v2-actions { display: flex; gap: 24px; margin-bottom: 80px; animation: fadeInUp 1s ease 0.6s forwards; opacity: 0; }
.btn-xl { padding: 22px 50px; font-size: 1rem; border-radius: 100px; }
.btn-glow { box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3); }

.hero-v2-stats { display: flex; align-items: center; gap: 40px; animation: fadeInUp 1s ease 0.8s forwards; opacity: 0; }
.stat-item-v2 { display: flex; flex-direction: column; gap: 8px; }
.stat-val { font-size: 1.6rem; font-weight: 800; color: #fff; }
.stat-lab { font-size: 0.72rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.08); }

/* V2 Visual */
.floating-vault-wrap { position: relative; transform-style: preserve-3d; animation: float3d 6s infinite ease-in-out; }
.v-card-3d { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6); }
.card-img-elite { width: 100%; height: auto; display: block; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 32px; }
.floating-token { position: absolute; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; border: 2px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); z-index: 2; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.floating-token.gold { top: -20px; right: -20px; background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%); color: #000; animation: floatUp 4s infinite ease-in-out; }
.floating-token.silver { bottom: 20px; left: -30px; background: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%); color: #000; animation: floatDown 5s infinite ease-in-out; }
.floating-token.diamond { top: 40%; right: -40px; background: linear-gradient(135deg, var(--accent) 0%, #0084ff 100%); color: #000; animation: floatUp 3s infinite ease-in-out; }

/* Hubs Strip */
.global-hubs-strip { background: rgba(255, 255, 255, 0.02); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); height: 70px; display: flex; align-items: center; overflow: hidden; }
.hubs-scroll { display: flex; gap: 80px; padding: 0 80px; animation: ticker-scroll 40s linear infinite; white-space: nowrap; }
.hubs-scroll span { font-size: 0.72rem; font-weight: 800; color: var(--text-secondary); letter-spacing: 2px; }
.hub-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; opacity: 0.4; }

/* V2 Section Block */
.section-block-v2 { padding: 120px 0; position: relative; }
.v2-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; width: 100%; }
.section-meta { margin-bottom: 60px; }
.meta-tag { font-size: 0.7rem; font-weight: 800; color: var(--accent); letter-spacing: 3px; display: block; margin-bottom: 16px; }
.section-block-v2 h2 { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.section-block-v2 h2 span { color: var(--text-secondary); }

.elite-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.ef-card { padding: 50px 40px; border-radius: 40px; transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); border: 1px solid rgba(255, 255, 255, 0.05); }
.ef-card:hover { transform: translateY(-15px); border-color: rgba(var(--accent-rgb), 0.3); background: rgba(0, 240, 255, 0.02); }
.ef-icon { width: 60px; height: 60px; background: rgba(var(--accent-rgb), 0.05); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 32px; }
.ef-card h3 { font-size: 1.5rem; margin-bottom: 20px; font-weight: 800; }
.ef-card p { color: var(--text-secondary); line-height: 1.6; }

/* Split Layout V2 */
.split-layout-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.check-list-elite { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 32px 0 48px; }
.check-list-elite li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-secondary); font-weight: 600; }
.check-list-elite li::before { content: ""; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }

.mockup-container { position: relative; }
.mockup-img-elite { width: 100%; border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4); }
.mockup-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 100% 0%, rgba(0, 240, 255, 0.2), transparent 50%); pointer-events: none; }

/* Trust Grid V2 */
.trust-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.trust-item-v2 { display: flex; flex-direction: column; gap: 8px; opacity: 0.4; transition: 0.3s; }
.trust-item-v2:hover { opacity: 1; }
.t-val { font-size: 1.25rem; font-weight: 800; letter-spacing: 3px; }
.t-sub { font-size: 0.6rem; font-weight: 800; color: var(--accent); letter-spacing: 2px; }

/* Final CTA V2 */
.final-cta-v2 { padding: 180px 0; position: relative; overflow: hidden; background: var(--bg-deep); }
.final-cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop") center/cover; opacity: 0.05; filter: grayscale(1); }
.final-cta-content h2 { font-size: 4rem; line-height: 0.95; margin-bottom: 32px; }
.final-cta-content span { color: var(--accent); }

/* Scroll Reveal */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* Additional Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float3d { 0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); } 50% { transform: translateY(-20px) rotateX(-2deg) rotateY(5deg); } }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px) translateX(10px); } }
@keyframes floatDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(20px) translateX(-10px); } }

@media (max-width: 1024px) {
    .hero-v2-container { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-v2-content { order: 2; }
    .hero-v2-visual { order: 1; transform: scale(0.8); }
    .hero-reveal-top { justify-content: center; }
    .elite-reveal-title { font-size: 3.5rem; }
    .elite-reveal-sub { margin-left: auto; margin-right: auto; }
    .hero-v2-actions { justify-content: center; }
    .hero-v2-stats { justify-content: center; }
    .elite-features-grid { grid-template-columns: 1fr; }
    .split-layout-v2 { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .check-list-elite { align-items: center; }
    .trust-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== LANDING PAGE FINANCE WIDGETS ===================== */
.terminal-ribbon { height: 35px; background: #000; border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; overflow: hidden; position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; }
.ribbon-scroll { display: flex; gap: 60px; padding: 0 60px; animation: ticker-scroll 40s linear infinite; white-space: nowrap; }
.rib-item { font-size: 0.65rem; font-weight: 800; color: rgba(255, 255, 255, 0.5); letter-spacing: 1px; }
.rib-item minor { font-size: 0.55rem; padding: 1px 4px; border-radius: 3px; background: rgba(0, 240, 100, 0.1); color: #00f064; }

.hero-market-widget { margin-top: 48px; padding: 24px 32px; border-radius: 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); max-width: 500px; }
.hmw-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hmw-header span { font-size: 0.65rem; font-weight: 800; color: var(--accent); letter-spacing: 2px; }
.pulse-dot { width: 6px; height: 6px; background: #00f064; border-radius: 50%; box-shadow: 0 0 10px #00f064; animation: dot-glow 2s infinite; }

.hmw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hmw-item label { display: block; font-size: 0.6rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; text-transform: uppercase; }
.hmw-item span { font-size: 0.95rem; font-weight: 800; }

.graph-widget { position: absolute; bottom: -40px; left: -40px; padding: 24px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); z-index: 5; width: 280px; }
.gw-header { font-size: 0.72rem; font-weight: 800; color: var(--text-secondary); margin-bottom: 20px; text-align: center; }
.gw-visual { display: flex; align-items: flex-end; gap: 8px; height: 100px; justify-content: center; margin-bottom: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.gw-line { width: 12px; background: linear-gradient(to top, rgba(var(--accent-rgb), 0.1), rgba(0, 240, 255, 0.8)); border-radius: 4px 4px 0 0; animation: bar-rise 1.5s ease-out forwards; opacity: 0; }
@keyframes bar-rise { from { height: 0; opacity: 0; } to { opacity: 1; } }

.gw-footer { font-size: 0.65rem; color: #00f064; text-align: center; font-weight: 800; }

.trading-widget { padding: 40px; border-radius: 32px; min-height: 400px; position: relative; overflow: hidden; background: rgba(255, 255, 255, 0.02); }
.tw-header { font-size: 0.85rem; font-weight: 800; color: var(--accent); letter-spacing: 1px; margin-bottom: 32px; }
.tw-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.tw-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; transition: transform 0.3s; }
.tw-row:hover { transform: translateX(10px); border-color: rgba(var(--accent-rgb), 0.3); }
.tw-row .asset { font-weight: 700; font-size: 0.9rem; }
.tw-row .price { font-family: monospace; font-size: 0.9rem; color: var(--text-secondary); }
.tw-row .change { font-size: 0.75rem; font-weight: 800; }

.tw-graph-visual { display: flex; align-items: flex-end; gap: 10px; height: 80px; opacity: 0.4; }
.tw-graph-visual .bar { flex: 1; background: var(--accent); border-radius: 4px; }

.terminal-stats { background: rgba(0, 0, 0, 0.2); padding: 24px; border-radius: 16px; margin: 32px 0; border: 1px solid rgba(255, 255, 255, 0.05); }
.ts-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ts-row:last-child { margin-bottom: 0; }
.ts-label { font-size: 0.7rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; }
.ts-val { font-size: 0.82rem; font-weight: 800; font-family: monospace; color: var(--accent); }

.trust-strip-v2 { margin-top: 60px; font-size: 0.65rem; font-weight: 800; color: rgba(255, 255, 255, 0.2); letter-spacing: 2px; }

/* ===================== ELITE FOOTER UPGRADE ===================== */
.main-footer-elite { background: var(--bg-deep); padding: 100px 0 60px; border-top: 1px solid rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.footer-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 80px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.footer-brand-elite { max-width: 500px; }
.f-logo-elite { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; margin-bottom: 24px; }
.f-logo-elite span { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.f-logo-img { width: 35px; height: auto; }
.f-mission { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

.footer-status-widget { display: flex; gap: 40px; padding: 24px 32px; border-radius: 20px; }
.fsw-item label { display: block; font-size: 0.6rem; font-weight: 800; color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; }
.fsw-item span { font-size: 0.85rem; font-weight: 800; }

.footer-main-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.f-col h4 { font-size: 0.75rem; font-weight: 800; color: #fff; letter-spacing: 2px; margin-bottom: 32px; }
.f-col ul { list-style: none; padding: 0; }
.f-col ul li { margin-bottom: 14px; font-size: 0.88rem; color: var(--text-secondary); }
.f-col ul li a { color: inherit; text-decoration: none; transition: color 0.3s; }
.f-col ul li a:hover { color: var(--accent); }
.f-col .loc { color: var(--accent); font-weight: 700; }

.membership-newsletter p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.f-newsletter-form { display: flex; gap: 10px; margin-bottom: 24px; }
.f-newsletter-form input { flex: 1; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 12px 16px; color: #fff; font-size: 0.85rem; }
.f-newsletter-form button { background: var(--accent); color: #000; border: none; border-radius: 8px; padding: 0 24px; font-weight: 800; font-size: 0.8rem; cursor: pointer; transition: transform 0.3s; }
.f-newsletter-form button:hover { transform: scale(1.05); }

.f-socials-elite { display: flex; gap: 16px; }
.f-socials-elite a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); color: #fff; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.f-socials-elite a:hover { border-color: var(--accent); color: var(--accent); background: rgba(var(--accent-rgb), 0.05); }

.footer-bottom-elite { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.f-legal-links { display: flex; gap: 24px; }
.f-legal-links a { font-size: 0.75rem; color: var(--text-secondary); text-decoration: none; transition: color 0.3s; }
.f-legal-links a:hover { color: #fff; }
.f-copyright p { font-size: 0.72rem; color: rgba(255, 255, 255, 0.2); font-weight: 600; }

.f-certifications { display: flex; gap: 24px; }
.cert { font-size: 0.6rem; font-weight: 800; color: rgba(255, 255, 255, 0.2); letter-spacing: 1px; padding: 4px 10px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 4px; }

@media (max-width: 1024px) {
    .footer-top-row { flex-direction: column; gap: 40px; }
    .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom-elite { flex-direction: column; gap: 32px; text-align: center; }
}

/* ===================== HIGH-END LIGHT THEME OVERRIDES ===================== */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    box-shadow: var(--card-shadow);
}

.main-header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links a { color: var(--text-primary); }
.nav-links a.active { color: #0066ff; }
.logo-img { filter: none; } /* Assuming logo looks good on white */

.hero-premium-v2 { background: var(--bg-secondary); }
.elite-reveal-title { color: var(--text-primary); }
.elite-reveal-sub { color: var(--text-secondary); }

.ef-card { background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03); }
.ef-card h3 { color: var(--text-primary); }

.trading-widget { background: #fff; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); }
.tw-row { background: #f8fbff; border-color: rgba(0, 0, 0, 0.03); color: var(--text-primary); }

.main-footer-elite { background: #fafbfc; border-top: 1px solid rgba(0, 0, 0, 0.05); color: var(--text-primary); }
.f-logo-elite span { color: var(--text-primary); }
.f-col h4 { color: var(--text-primary); }
.f-mission { color: var(--text-secondary); }

/* Buttons in Light Mode */
.btn-primary { background: var(--primary-gradient); color: #fff; box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2); }
.btn-outline { border: 1px solid rgba(0, 0, 0, 0.1); color: var(--text-primary); }
.btn-outline:hover { background: rgba(0, 0, 0, 0.02); }

/* Dashboard Light Mode */
.dashboard-wrapper { background: #f4f7fa; }
.dashboard-aside { background: #fff; border-right: 1px solid rgba(0, 0, 0, 0.05); }
.dash-nav a { color: #555; }
.dash-nav a.active { background: rgba(0, 102, 255, 0.03); color: #0066ff; }
.dashboard-main { background: #f8fbff; }
.asset-card-main { background: #fff; box-shadow: 0 20px 80px rgba(0, 0, 0, 0.06); color: var(--text-primary); }
.ac-label { color: #888; }
.ac-balance { color: var(--text-primary); }
.ac-footer { color: #aaa; }

.ledger-container-elite { background: #fff; }
.le-row { background: #fbfcff; border-color: rgba(0, 0, 0, 0.03); color: var(--text-primary); }
.le-info .le-title { color: var(--text-primary); }
.le-meta { color: #999; }

.private-banker-card { background: #fff; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05); color: var(--text-primary); }
.security-health-card { background: #fff; }
.global-presence-card { background: #fff; }

/* Form Fixes */
.auth-card { background: #fff; box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1); color: var(--text-primary); }
.auth-card input, .auth-card select, .auth-card textarea { background: #f8fafc; border: 1px solid #e2e8f0; color: #1a1d23; }
.category-title { border-bottom-color: #e2e8f0; }

.step-tracker::after { background: #e2e8f0; }
.step { background: #f8fafc; border-color: #e2e8f0; color: #888; }
.step.active { border-color: #0066ff; color: #0066ff; background: #fff; }

.sidebar-brand-title { color: var(--text-primary); }
.sidebar-mission-text { color: var(--text-secondary); }

/* Ticker Bar Light */
.dash-ticker-bar { background: #f6f9fc; border-bottom-color: rgba(0, 0, 0, 0.05); }
.ticker-item { color: #666; }

/* ===================== ELITE COLOR BALANCING (LIGHT THEME) ===================== */
.v-up { color: #1a8f4c !important; font-weight: 700; }
.v-down { color: #d32f2f !important; font-weight: 700; }

.gradient-text { 
    background: linear-gradient(135deg, #0b1a4a 0%, #002288 100%); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.hero-v2-stats .stat-val { color: var(--text-primary); font-family: "Outfit", sans-serif; }
.hero-v2-stats .stat-lab { color: #7a869a; }

.ef-card p { color: #6b778c; line-height: 1.8; font-size: 0.95rem; }
.ef-card h3 { color: #0044cc; letter-spacing: -0.5px; }

.trust-item-v2 { opacity: 0.8 !important; }
.trust-item-v2:hover { opacity: 1 !important; transform: translateY(-2px); }
.t-val { color: #1a1d23; }
.t-sub { color: #0044cc; opacity: 0.8; }

.terminal-ribbon { background: #f0f4f8; border-bottom-color: rgba(0, 0, 0, 0.04); }
.rib-item { color: #5a6472; }
.rib-item minor { background: rgba(26, 143, 76, 0.08); color: #1a8f4c; padding: 2px 6px; }

.hmw-item span { color: #1a1d23; font-family: monospace; font-weight: 800; }
.hmw-item label { color: #8a94a6; font-size: 0.65rem; }

.tw-row .asset { color: #1a1d23; }
.tw-row .price { color: #5a6472; font-weight: 600; }

.f-mission { color: #5a6472; font-size: 0.85rem; }
.f-col h4 { color: #1a1d23; font-weight: 800; margin-bottom: 24px; font-size: 0.72rem; opacity: 0.9; }
.f-col li { color: #5a6472; font-size: 0.82rem; }
.f-col .loc { color: #0044cc; font-weight: 700; }

.f-copyright p { color: #8a94a6; }
.f-legal-links a { color: #5a6472; }
.cert { border-color: rgba(0, 0, 0, 0.06); color: #8a94a6; background: rgba(0, 0, 0, 0.02); }

.badge-elite { border-color: rgba(0, 68, 204, 0.2); color: #0044cc; background: rgba(0, 68, 204, 0.04); }
.status-online { color: #1a8f4c; }
.status-online::before { background: #1a8f4c; border: 2px solid #fff; box-shadow: 0 0 10px rgba(26, 143, 76, 0.3); }

/* Buttons Refinement */
.btn-primary:hover { background: linear-gradient(135deg, #002288 0%, #001144 100%); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 34, 136, 0.25); }



/* ===================== NAVBAR USER DROPDOWN ===================== */
.user-dropdown-registry { position: relative; }
.user-pill {
    display: flex; align-items: center; gap: 12px;
    padding: 6px 6px 6px 14px; background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 50px;
    cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none; user-select: none;
}
.user-pill:hover { background: rgba(255,255,255,0.06); border-color: rgba(var(--accent-rgb), 0.3); transform: translateY(-1px); }
.user-pill-info { display: flex; flex-direction: column; text-align: right; }
.user-name { font-size: 0.78rem; font-weight: 700; color: #fff; white-space: nowrap; }
.user-status-meta { font-size: 0.58rem; font-weight: 800; color: var(--accent); opacity: 0.7; letter-spacing: 0.5px; }
.nav-avatar-wrap { position: relative; width: 32px; height: 32px; flex-shrink: 0; }
.nav-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(var(--accent-rgb), 0.4); }
.avatar-status-pip { position: absolute; bottom: 0; right: 0; width: 9px; height: 9px; background: var(--success); border: 2px solid var(--bg-main); border-radius: 50%; box-shadow: 0 0 5px var(--success); }

.user-dropdown-menu {
    position: absolute; top: calc(100% + 12px); right: 0; width: 240px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000; padding: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}
.user-dropdown-registry.show .user-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.udm-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.udm-user-info { display: flex; flex-direction: column; gap: 2px; }
.udm-user-info strong { font-size: 0.85rem; color: #fff; font-weight: 700; }
.udm-user-info span { font-size: 0.65rem; color: var(--text-muted); font-family: "JetBrains Mono", monospace; }
.udm-badge { font-size: 0.58rem; font-weight: 900; color: var(--success); background: rgba(var(--success-rgb), 0.1); border: 1px solid rgba(var(--success-rgb), 0.2); padding: 2px 8px; border-radius: 4px; }
.udm-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 12px 0; }

.udm-links { display: flex; flex-direction: column; gap: 4px; }
.udm-link {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: 10px; text-decoration: none; color: rgba(255,255,255,0.6);
    font-size: 0.78rem; font-weight: 600; transition: 0.2s;
}
.udm-link svg { color: var(--accent); opacity: 0.7; transition: 0.2s; }
.udm-link:hover { background: rgba(var(--accent-rgb), 0.08); color: #fff; }
.udm-link:hover svg { opacity: 1; transform: translateX(2px); }

.udm-footer { padding-top: 4px; }
.udm-logout {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: 10px; text-decoration: none; color: rgba(239, 68, 68, 0.65);
    font-size: 0.78rem; font-weight: 700; transition: 0.2s;
}
.udm-logout:hover { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

@keyframes tickerScrollV5 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item-v5 { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.6); display: flex; gap: 6px; font-family: "JetBrains Mono", monospace; }
.ticker-item-v5 strong { font-weight: 900; }


/* Ticker & Header Alignment */
.app-viewport { padding-top: 24px; }
.fixed-header { transition: background 0.3s, top 0.3s !important; }
.fixed-header.scrolled { top: 0 !important; } /* Push back to top when scrolling */

