:root {


    --bg-primary: #0a0a0a;


    --bg-secondary: #121212;


    --bg-tertiary: #1a1a1a;


    --text-primary: #e2e8f0;


    --text-secondary: #a3a3a3;


    --accent-primary: #8B5CF6; /* EliteLab Red */


    --accent-hover: #7C3AED;


    --accent-light: rgba(139, 92, 246, 0.15);


    --border-color: rgba(255, 255, 255, 0.08);


    --glass-bg: rgba(18, 18, 18, 0.6);


    --glass-border: rgba(255, 255, 255, 0.05);


    


    --success: #22c55e;


    --danger: #ef4444;


    --success-bg: rgba(34, 197, 94, 0.15);


    --danger-bg: rgba(239, 68, 68, 0.15);


}





* {


    margin: 0;


    padding: 0;


    box-sizing: border-box;


}





body {


    font-family: 'DM Sans', sans-serif;


    background-color: var(--bg-primary);


    color: var(--text-primary);


    line-height: 1.6;


    min-height: 100vh;


    background-image: 


        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.05), transparent 25%),


        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.04), transparent 25%);


    background-attachment: fixed;


}





.container {


    max-width: 1300px;


    margin: 0 auto;


    padding: 0 2rem;


}





/* Glassmorphism */


.glass {


    background: var(--glass-bg);


    backdrop-filter: blur(12px);


    -webkit-backdrop-filter: blur(12px);


    border-bottom: 1px solid var(--glass-border);


}





.glass-panel {


    background: var(--glass-bg);


    backdrop-filter: blur(16px);


    -webkit-backdrop-filter: blur(16px);


    border: 1px solid var(--glass-border);


    border-radius: 16px;


    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);


    overflow: hidden;


    transition: transform 0.3s ease, box-shadow 0.3s ease;


}





.glass-panel:hover {


    transform: translateY(-2px);


    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.1);


}





/* Navbar */


.nav {


    position: sticky;


    top: 0;


    z-index: 100;


}





.nav-inner {


    display: flex;


    justify-content: space-between;


    align-items: center;


    height: 80px;


    position: relative;


}





.logo {


    display: flex;


    align-items: center;


    text-decoration: none;


    transition: transform 0.2s ease;


}





.logo:hover {


    transform: scale(1.05);


}





.nav-links {


    display: flex;


    gap: 2rem;


    position: absolute;


    left: 50%;


    transform: translateX(-50%);


    align-items: center;


}





.nav-link {


    color: var(--text-secondary);


    text-decoration: none;


    font-weight: 400;


    font-size: 0.95rem;


    transition: color 0.2s ease;


    position: relative;


}





.nav-link:hover, .nav-link.active {


    color: var(--text-primary);


}





.nav-link.active::after {


    content: '';


    position: absolute;


    bottom: -6px;


    left: 0;


    width: 100%;


    height: 2px;


    background-color: var(--accent-primary);


    border-radius: 2px;


    box-shadow: 0 0 8px var(--accent-primary);


}





.nav-actions {


    display: flex;


    align-items: center;


    gap: 1rem;


}





.mobile-menu-btn {


    display: none;


    background: transparent;


    border: none;


    color: var(--text-primary);


    font-size: 1.5rem;


    cursor: pointer;


    padding: 0.5rem;


}





.mobile-only {


    display: none !important;


}





.desktop-only {


    display: inline-flex;


}





/* Buttons */


.btn {


    display: inline-flex;


    align-items: center;


    justify-content: center;


    gap: 0.5rem;


    padding: 0.75rem 1.5rem;


    border-radius: 9999px;


    font-weight: 600;


    font-family: inherit;


    text-decoration: none;


    cursor: pointer;


    transition: all 0.3s ease;


    border: none;


    outline: none;


}





.btn-sm {


    padding: 0.5rem 1rem;


    font-size: 0.875rem;


}





.btn-lg {


    padding: 1rem 2.5rem;


    font-size: 1.1rem;


}





.btn-primary {


    background-color: var(--accent-primary);


    color: white;


    box-shadow: 0 4px 14px 0 rgba(139, 92, 246, 0.39);


}





.btn-primary:hover {


    background-color: var(--accent-hover);


    transform: translateY(-1px);


    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.23);


}





.btn-secondary {


    background-color: transparent;


    color: var(--text-primary);


    border: 1px solid var(--border-color);


}





.btn-secondary:hover {


    background-color: var(--border-color);


}





/* Hero */


.hero {


    padding: 6rem 0 4rem;


}





.hero-content {


    display: flex;


    flex-direction: column;


    align-items: center;


    text-align: center;


}





.hero-title {


    font-size: clamp(38px, 6vw, 64px);


    line-height: 1.05;


    font-weight: 700;





    letter-spacing: -0.02em;


    margin-bottom: 1.5rem;


}





.highlight-text {


    display: inline-block;


    color: var(--accent-primary);


    text-shadow: 0 0 40px rgba(139, 92, 246, 0.4);


}





.hero-subtitle {


    font-size: 1.125rem;


    font-weight: 300;


    color: var(--text-secondary);


    max-width: 600px;


    margin-bottom: 3rem;


}





/* Dashboard */


.dashboard-container {


    padding-bottom: 6rem;


}





.panel-header {


    display: flex;


    align-items: center;


    justify-content: space-between;


    padding: 1.25rem 1.5rem;


    background: rgba(0, 0, 0, 0.2);


    border-bottom: 1px solid var(--glass-border);


}





.panel-header h2 {


    font-size: 1.1rem;


    font-weight: 600;


    letter-spacing: 0.05em;


    color: var(--text-secondary);


    text-transform: uppercase;


}





.window-controls {


    display: flex;


    gap: 0.5rem;


}





.dot {


    width: 12px;


    height: 12px;


    border-radius: 50%;


}





.dot.red { background-color: #ff5f56; }


.dot.yellow { background-color: #ffbd2e; }


.dot.green { background-color: #27c93f; }





.status-indicator {


    display: flex;


    align-items: center;


    gap: 0.5rem;


    font-size: 0.875rem;


    font-weight: 600;


    color: var(--success);


}





.ping {


    width: 8px;


    height: 8px;


    border-radius: 50%;


    background-color: var(--success);


    box-shadow: 0 0 8px var(--success);


    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;


}





@keyframes ping {


    75%, 100% {


        transform: scale(2);


        opacity: 0;


    }


}





/* Table */


.table-responsive {


    overflow-x: auto;


    -webkit-overflow-scrolling: touch;


}





.data-table {


    width: 100%;


    border-collapse: collapse;


    text-align: left;


}





.data-table th {


    padding: 1.25rem 1.5rem;


    font-size: 0.75rem;


    font-weight: 600;


    color: var(--text-secondary);


    text-transform: uppercase;


    letter-spacing: 0.05em;


    border-bottom: 1px solid var(--glass-border);


}





.data-table td {


    padding: 1.25rem 1.5rem;


    font-size: 0.95rem;


    border-bottom: 1px solid var(--glass-border);


    vertical-align: middle;


}





.data-table tbody tr {


    transition: background-color 0.2s ease;


}





.data-table tbody tr:hover {


    background: linear-gradient(90deg, rgba(139, 92, 246, 0.25), transparent);


}





.symbol {


    font-weight: 700;


    color: var(--text-primary);


    font-weight: 600;
}





.company-name {


    color: var(--text-secondary);


    font-size: 0.85rem;


}





.badge {


    padding: 0.25rem 0.75rem;


    border-radius: 9999px;


    font-size: 0.75rem;


    font-weight: 600;


}





.badge.success {


    background-color: var(--success-bg);


    color: var(--success);


}





.badge.danger {


    background-color: var(--danger-bg);


    color: var(--danger);


}





.action-btn {


    background: transparent;


    border: 1px solid var(--border-color);


    color: var(--text-primary);


    padding: 0.4rem 0.8rem;


    border-radius: 6px;


    cursor: pointer;


    transition: all 0.2s;


    font-size: 0.8rem;


}





.action-btn:hover {


    background: var(--accent-light);


    border-color: var(--accent-primary);


    color: var(--accent-primary);


}





/* Loading State */


.loading-state {


    position: absolute;


    top: 0;


    left: 0;


    right: 0;


    bottom: 0;


    display: flex;


    flex-direction: column;


    align-items: center;


    justify-content: center;


    background: var(--bg-primary);


    gap: 1rem;


    z-index: 10;


    display: none;


}





.loading-state.active {


    display: flex;


}





.spinner {


    width: 40px;


    height: 40px;


    border: 3px solid rgba(139, 92, 246, 0.2);


    border-radius: 50%;


    border-top-color: var(--accent-primary);


    animation: spin 1s linear infinite;


}





@keyframes spin {


    to { transform: rotate(360deg); }


}





@media (max-width: 768px) {
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }


    .nav-links {


        display: none;


        position: fixed;


        top: 0;


        left: 0;


        right: 0;


        bottom: 0;


        width: 100%;


        height: 100vh;


        background: rgba(5, 5, 10, 0.97);


        backdrop-filter: blur(30px);


        -webkit-backdrop-filter: blur(30px);


        flex-direction: column;


        align-items: center;


        justify-content: center;


        gap: 1.15rem;


        z-index: 9999;


        text-align: center;


        padding: 2rem;


        transform: translateX(-50%);


        left: 50%;


    }


    


    .nav-links .nav-link {


        font-size: 1.15rem;


        font-weight: 600;


        padding: 0.4rem 1rem;


        opacity: 0;


        transform: translateY(20px);


        transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;


    }


    


    .nav-links.active {


        display: flex;


        animation: fadeInOverlay 0.3s ease forwards;


    }


    


    .nav-links.active .nav-link {


        opacity: 1;


        transform: translateY(0);


    }


    


    .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.08s; }


    .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.16s; }


    .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.24s; }


    .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.32s; }


    


    @keyframes fadeInOverlay {


        from { opacity: 0; }


        to { opacity: 1; }


    }


    



    .mobile-menu-btn {


        display: block;


        z-index: 10000;


        position: relative;


    }





    .mobile-only {


        display: inline-flex !important;


        justify-content: center;


    }





    .desktop-only {


        display: none !important;


    }





    .hero {


        padding: 4rem 1rem 2rem;


    }





    .hero-title {


        font-size: 2.2rem;


    }





    .hero-subtitle {


        font-size: 0.95rem;


        margin-bottom: 1.5rem;


    }





    .dashboard-container {


        padding: 0 1rem 4rem;


    }





    .glass-panel {


        padding: 1.5rem;


    }





    .data-table th, .data-table td {


        padding: 1rem;


    }


}





/* Pagination Controls */


.pagination-controls {


    display: flex;


    justify-content: center;


    align-items: center;


    gap: 0.5rem;


    padding: 1.5rem;


    border-top: 1px solid var(--glass-border);


}





.page-btn {


    background: rgba(255, 255, 255, 0.03);


    border: 1px solid var(--glass-border);


    color: var(--text-secondary);


    width: 35px;


    height: 35px;


    border-radius: 8px;


    display: flex;


    align-items: center;


    justify-content: center;


    cursor: pointer;


    font-family: 'DM Sans', sans-serif;


    font-size: 0.9rem;


    font-weight: 600;


    transition: all 0.2s ease;


}





.page-btn:hover:not(:disabled) {


    background: rgba(255, 255, 255, 0.1);


    color: var(--text-primary);


    transform: translateY(-2px);


    box-shadow: 0 4px 12px rgba(0,0,0,0.2);


}





.page-btn.active {


    background: var(--accent-primary);


    color: white;


    border-color: var(--accent-primary);


    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);


}





.page-btn:disabled {


    opacity: 0.3;


    cursor: not-allowed;


}





/* Chart Tooltip */


.chart-tooltip {


    position: fixed;


    width: 700px;
    height: 500px;


    background: var(--bg-secondary);


    border: 1px solid var(--glass-border);


    border-radius: 12px;


    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(139, 92, 246, 0.3);


    z-index: 9999;


    overflow: hidden;


    transition: opacity 0.15s ease, transform 0.1s ease;


    opacity: 0;


    visibility: hidden;


    display: flex;


    align-items: center;


    justify-content: center;


}





.chart-tooltip::before {


    content: 'Loading chart...';


    position: absolute;


    color: var(--text-secondary);


    font-size: 0.9rem;


    z-index: -1;


}





.chart-tooltip.visible {


    opacity: 1;


    visibility: visible;


}





#chart-iframe {


    width: 100%;


    height: 100%;


    border: none;


    background: transparent;


}





/* Footer */


.footer {


    margin-top: 4rem;


    padding: 2rem 0;


    border-top: 1px solid var(--glass-border);


    background: rgba(10, 10, 10, 0.4);


    backdrop-filter: blur(12px);


    -webkit-backdrop-filter: blur(12px);


}





.footer-content {


    display: flex;


    justify-content: space-between;


    align-items: center;


    color: var(--text-secondary);


    font-size: 0.85rem;


}





.footer-links {


    display: flex;


    gap: 1.5rem;


}





.footer-links a {


    color: var(--text-secondary);


    text-decoration: none;


    transition: color 0.2s ease;


}





.footer-links a:hover {


    color: var(--text-primary);


}





@media (max-width: 768px) {


    .footer-content {


        flex-direction: column;


        gap: 1rem;


        text-align: center;


    }


}





.footer-disclaimer {


    margin-top: 2rem;


    padding-top: 1.5rem;


    border-top: 1px solid rgba(255, 255, 255, 0.03);


    text-align: center;


    color: var(--text-secondary);


    font-size: 0.75rem;


    line-height: 1.6;


    opacity: 0.6;


}





/* News Grid Styles */


.news-grid {


    display: grid;


    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));


    gap: 1.5rem;


    padding-bottom: 3rem;


}





.news-card {


    display: flex;


    flex-direction: column;


    text-decoration: none;


    color: inherit;


    transition: transform 0.3s ease, box-shadow 0.3s ease;


    border-radius: 16px;


    background: rgba(20, 20, 30, 0.4);


    border: 1px solid rgba(255, 255, 255, 0.05);


    overflow: hidden;


}





.news-image {


    width: 100%;


    height: 180px;


    overflow: hidden;


    border-bottom: 1px solid rgba(255, 255, 255, 0.05);


}





.news-image img {


    width: 100%;


    height: 100%;


    object-fit: cover;


    transition: transform 0.5s ease;


}





.news-card:hover .news-image img {


    transform: scale(1.05);


}





.news-content-wrapper {


    padding: 1.5rem;


    display: flex;


    flex-direction: column;


    flex-grow: 1;


}





.news-card:hover {


    transform: translateY(-5px);


    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);


    border-color: rgba(139, 92, 246, 0.3);


}





.news-meta {


    display: flex;


    justify-content: space-between;


    align-items: center;


    font-size: 0.8rem;


    color: var(--text-secondary);


    margin-bottom: 1rem;


}





.news-source {


    color: var(--accent-primary);


    font-weight: 600;


}





.news-title {


    font-size: 1.1rem;


    line-height: 1.5;


    font-weight: 600;


    margin-bottom: 1rem;


    color: var(--text-primary);


}





.news-desc {


    font-size: 0.9rem;


    line-height: 1.6;


    color: var(--text-secondary);


    margin-bottom: 1.5rem;


    flex-grow: 1;


}





.news-footer {


    border-top: 1px solid rgba(255, 255, 255, 0.05);


    padding-top: 1rem;


    margin-top: auto;


}





.read-more {


    font-size: 0.85rem;


    font-weight: 600;


    color: var(--accent-primary);


    display: flex;


    align-items: center;


    gap: 0.5rem;


    transition: gap 0.2s ease;


}





.news-card:hover .read-more {


    gap: 0.8rem;


}





/* Contact Form */


.contact-form-container {


    width: 100%;


    max-width: 600px;


    padding: 2.5rem;


    margin: 0 auto;


}





.form-group {


    margin-bottom: 1.5rem;


}





.form-group label {


    display: block;


    font-size: 0.9rem;


    color: var(--text-secondary);


    margin-bottom: 0.5rem;


    font-weight: 500;


}





.form-control {


    width: 100%;


    background: rgba(15, 15, 25, 0.6);


    border: 1px solid var(--glass-border);


    color: var(--text-primary);


    padding: 0.8rem 1rem;


    border-radius: 8px;


    font-family: 'DM Sans', sans-serif;


    font-size: 0.95rem;


    transition: all 0.3s ease;


}





.form-control:focus {


    outline: none;


    border-color: var(--accent-primary);


    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);


}





.form-control::placeholder {


    color: rgba(255, 255, 255, 0.2);


}





select.form-control option {


    background: #13111C;


    color: var(--text-primary);


}





 / *   M a r k e t   S t a t u s   W i d g e t   * / 


 . m a r k e t - s t a t u s - b o x   { 


         d i s p l a y :   f l e x ; 


         a l i g n - i t e m s :   c e n t e r ; 


         g a p :   8 p x ; 


         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 


         p a d d i n g :   6 p x   1 2 p x ; 


         b o r d e r - r a d i u s :   2 0 p x ; 


         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 


         f o n t - s i z e :   0 . 8 5 r e m ; 


         f o n t - w e i g h t :   5 0 0 ; 


 } 


 


 . s t a t u s - d o t   { 


         w i d t h :   8 p x ; 


         h e i g h t :   8 p x ; 


         b o r d e r - r a d i u s :   5 0 % ; 


         d i s p l a y :   i n l i n e - b l o c k ; 


 } 


 


 . s o l i d - r e d   { 


         b a c k g r o u n d - c o l o r :   # e f 4 4 4 4 ; 


         b o x - s h a d o w :   0   0   5 p x   # e f 4 4 4 4 ; 


 } 


 


 . b l i n k - g r e e n   { 


         b a c k g r o u n d - c o l o r :   # 1 0 b 9 8 1 ; 


         b o x - s h a d o w :   0   0   5 p x   # 1 0 b 9 8 1 ; 


         a n i m a t i o n :   b l i n k   1 . 5 s   i n f i n i t e ; 


 } 


 


 @ k e y f r a m e s   b l i n k   { 


         0 %   {   o p a c i t y :   1 ;   } 


         5 0 %   {   o p a c i t y :   0 . 3 ;   } 


         1 0 0 %   {   o p a c i t y :   1 ;   } 


 } 


 


 . s t a t u s - t i m e   { 


         c o l o r :   # 9 4 a 3 b 8 ; 


         m a r g i n - l e f t :   4 p x ; 


         f o n t - f a m i l y :   ' R o b o t o   M o n o ' ,   m o n o s p a c e ; 


 } 


 


 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 


         . m a r k e t - s t a t u s - w i d g e t . d e s k t o p - o n l y   {   d i s p l a y :   n o n e ;   } 


         . m a r k e t - s t a t u s - w i d g e t . m o b i l e - o n l y   {   d i s p l a y :   b l o c k ;   m a r g i n - r i g h t :   1 0 p x ;   } 


 } 


 @ m e d i a   ( m i n - w i d t h :   7 6 9 p x )   { 


         . m a r k e t - s t a t u s - w i d g e t . m o b i l e - o n l y   {   d i s p l a y :   n o n e ;   } 


         . m a r k e t - s t a t u s - w i d g e t . d e s k t o p - o n l y   {   d i s p l a y :   b l o c k ;   } 


 } 


 
 


 





/* Market Status Widget */
.market-status-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.solid-red {
    background-color: #ff003c;
    box-shadow: 0 0 8px #ff003c, 0 0 12px #ff003c;
}

.blink-green {
    background-color: #00ff41;
    box-shadow: 0 0 8px #00ff41, 0 0 12px #00ff41;
    position: relative;
}

.blink-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #00ff41;
    animation: ping-neon 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping-neon {
    75%, 100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.neon-green-text {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    margin-left: 6px;
}

.neon-red-text {
    color: #ff003c;
    text-shadow: 0 0 5px rgba(255, 0, 60, 0.5);
    margin-left: 6px;
}

.status-time {
    color: #cbd5e1;
    margin-left: 6px;
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

@media (max-width: 768px) {
    .market-status-widget.desktop-only { display: none; }
    .market-status-widget.mobile-only { display: block; margin-right: 10px; }
}
@media (min-width: 769px) {
    .market-status-widget.mobile-only { display: none; }
    .market-status-widget.desktop-only { display: block; }
}

/* Mobile hamburger drawer — top market status block */
.mobile-menu-market-status {
    display: none;
}
@media (max-width: 768px) {
    .mobile-menu-market-status {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mobile-menu-market-status .market-status-box {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }
    .mobile-menu-market-status .status-time {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left > div {
        justify-content: center;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* About Page Specifics */
.about-panel {
    width: 100%;
    max-width: 800px;
    padding: 3rem;
}

@media (max-width: 768px) {
    .about-panel {
        padding: 1.2rem;
    }
    .mission-box {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    .mission-box > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
    }

    .about-content,
    .about-content h2,
    .about-content p,
    .about-panel p,
    .about-panel h2 {
        text-align: center !important;
    }

    .mission-box p {
        text-align: center !important;
    }
    /* Specifically target the social links container to keep them side-by-side and centered */
    .mission-box > div:last-child > div {
        display: flex !important;
        justify-content: center !important;
        width: 100%;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    font-family: \'DM Sans\', sans-serif !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }

/* Mobile Table Columns */
@media (max-width: 768px) {
    .table th:nth-child(2),
    .table td:nth-child(2),
    .table th:nth-child(5),
    .table td:nth-child(5),
    .table th:nth-child(6),
    .table td:nth-child(6) {
        display: none !important;
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .copyright-desktop {
        display: none !important;
    }
    .copyright-mobile {
        display: block !important;
        text-align: center;
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
    }
}
@media (min-width: 769px) {
    .copyright-mobile {
        display: none !important;
    }
    .br-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
}


/* Features Section */
.features-section {
    padding: 5rem 0 3rem;
    position: relative;
}

.features-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

.features-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.features-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-align: center;
}

.features-title-gradient {
    background: linear-gradient(135deg, var(--accent-primary), #10B981, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.features-desc strong {
    color: var(--text-primary);
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(ellipse at 30% 0%, rgba(139, 92, 246, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-primary);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(16, 185, 129, 0.18));
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.feature-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 1rem 1.5rem;
    }
    .features-header {
        margin-bottom: 2rem;
    }
    .features-title {
        font-size: 2rem;
        line-height: 1.25;
    }
    .features-desc {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-card-icon {
        width: 42px;
        height: 42px;
    }
    .feature-card-title {
        font-size: 1.05rem;
    }
    .feature-card-desc {
        font-size: 0.85rem;
    }
}


/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reviews-header { text-align: center; width: 100%; }
.reviews-subtitle {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.reviews-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 4rem;
    color: var(--text-primary);
}
.reviews-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.review-card {
    padding: 3rem;
    position: relative;
    border-radius: 16px;
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.05);
    transition: opacity 0.4s ease;
}
.review-card.fade-out {
    opacity: 0;
}
.quote-icon {
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.4);
    margin-bottom: 1rem;
}
.review-metric {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10B981; /* Green color for positive metric */
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}
.review-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.review-author-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}
.author-info-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar-large {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
}
.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-name {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}
.verified-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}
.author-strategy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.2rem;
}
.author-strategy span {
    color: var(--accent-primary);
    font-weight: 600;
}
.author-stars {
    color: #F59E0B; /* Yellow gold */
    font-size: 0.9rem;
    display: flex;
    gap: 0.2rem;
}

/* Reviewer Pills */
.reviewer-pills-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.reviewer-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reviewer-pill:hover {
    background: rgba(255, 255, 255, 0.08);
}
.reviewer-pill.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}
.pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    overflow: hidden;
}
.pill-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pill-info {
    display: flex;
    flex-direction: column;
}
.pill-name {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}
.pill-metric {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 700;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .review-card {
        padding: 1.5rem;
    }
    .review-metric {
        font-size: 2rem;
    }
    .review-text {
        font-size: 1.1rem;
    }
    .review-author-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .reviewer-pills-container {
        gap: 0.5rem;
    }
    .reviews-section {
        padding: 4rem 0 2rem 0 !important;
    }
    .contact-section {
        margin-top: 3rem !important;
        padding-top: 2rem !important;
    }
}

/* Stock Ticker Styles */
.ticker-section {
    width: 100%;
    background: rgba(10, 10, 10, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.85rem 0;
    overflow: hidden;
    margin: 2.5rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 30px rgba(0, 0, 0, 0.3);
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee 44s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 2rem;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: -0.2px;
}
.ticker-name {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.ticker-price {
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
}
.ticker-change {
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
}
.ticker-change.positive {
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.ticker-change.negative {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Nav links responsive spacing adjustment for new 5-link setup */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 1rem !important;
    }
    .nav-link {
        font-size: 0.85rem !important;
    }
}

/* Navigation Dropdown Menu styling */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropbtn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    gap: 0.35rem;
}
.nav-dropbtn i {
    font-size: 0.75rem;
    transition: transform 0.1s ease;
}
.nav-dropdown.active .nav-dropbtn {
    color: var(--accent-primary);
}
.nav-dropdown.active .nav-dropbtn i {
    transform: rotate(180deg);
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 12, 28, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 210px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}
.nav-dropdown-content a {
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.1s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
}
.nav-dropdown-content a:hover {
    color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.1);
    padding-left: 1.5rem;
}
.nav-dropdown.active .nav-dropdown-content {
    display: block;
}

/* Mobile responsive navigation dropdown */
@media (max-width: 768px) {
    .nav-dropdown {
        display: block;
        width: 100%;
        text-align: left;
    }
    .nav-dropbtn {
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1.05rem;
        font-weight: 600;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-secondary);
    }
    .nav-dropdown:hover .nav-dropbtn i {
        transform: none; /* No rotate on mobile */
    }
    .nav-dropdown-content {
        position: static;
        display: block; /* Show inline inside mobile drawer */
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        transform: none;
        padding-left: 1rem;
        min-width: unset;
        animation: none;
    }
    .nav-dropdown-content a {
        padding: 0.7rem 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    .nav-dropdown-content a:hover {
        padding-left: 0.5rem;
    }
}

/* Global Pricing Layout & Payment Modal Styles */
.pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.toggle-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px;
    border-radius: 30px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.toggle-btn {
    border: none;
    background: none;
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: left;
}
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}
.pricing-card.popular {
    background: rgba(139, 92, 246, 0.04);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}
.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.plan-price-box {
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}
.plan-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
    padding: 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.feature-item i {
    color: var(--success);
    font-size: 0.95rem;
}
.btn-choose {
    width: 100%;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.pricing-card.popular .btn-choose {
    background: var(--accent-primary);
    border: none;
}
.pricing-card.popular .btn-choose:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.btn-choose:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Modal checkout styling */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.payment-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.payment-card {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: left;
}
.payment-modal.active .payment-card {
    transform: scale(1);
}




