/* ========================================
   TRADE X PRO - MAIN STYLESHEET
   Premium Trading Platform
   ======================================== */

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #050B14;
    --bg-secondary: #070d18;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --primary-green: #2cbd88;
    --accent-green: #4ed3a2;
    --blue-glow: #00C8FF;
    --text-white: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2cbd88, #4ed3a2);
    --gradient-blue: linear-gradient(135deg, #00C8FF, #0066FF);
    --gradient-dark: linear-gradient(180deg, #050B14 0%, #0B1320 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(57, 255, 20, 0.15);
    --shadow-blue-glow: 0 0 30px rgba(0, 200, 255, 0.15);

    /* Typography */
    --font-family: 'Manrope', sans-serif;

    /* Spacing */
    --section-padding: 50px 0;
    --container-max: 1320px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ==================== UTILITIES ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

/* Section Header */
.section-header {
    margin-bottom: 64px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    /* background: rgba(57, 255, 20, 0.08); */
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center .section-description {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    border: none;
}

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

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(57, 255, 20, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: var(--transition-normal);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

/* Ripple Effect */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}


.market-ticker {
    width: 100%;
    overflow: hidden;
    background: #0d141d;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 25s linear infinite;
}

.market-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 35px;
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.ticker-item span {
    color: #39C88C;
    font-size: 18px;
}

.ticker-item strong {
    color: #39C88C;
}

.down span,
.down strong {
    color: #ff4d6d;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .ticker-track {
        animation-duration: 18s;
    }

    .ticker-item {
        padding: 0 20px;
        font-size: 13px;
    }

}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(57, 255, 20, 0.1);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== CUSTOM CURSOR ==================== */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--primary-green);
    background: rgba(57, 255, 20, 0.05);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-icon img.logo-img {
    width: 50px;
}


.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 13px;
    font-size: 13px;
    text-transform: uppercase;
    display: block;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(57, 255, 20, 0.15);
    top: -100px;
    right: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 200, 255, 0.1);
    bottom: -50px;
    left: -100px;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(57, 255, 20, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating Coins */
.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.coin {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.coin img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.coin-1 {
    top: 15%;
    left: 5%;
    animation: float-1 6s ease-in-out infinite;
}

.coin-2 {
    top: 25%;
    right: 8%;
    animation: float-2 7s ease-in-out infinite;
}

.coin-3 {
    bottom: 20%;
    left: 10%;
    animation: float-3 8s ease-in-out infinite;
}

.coin-4 {
    top: 60%;
    right: 5%;
    animation: float-1 5s ease-in-out infinite;
}

.coin-5 {
    bottom: 30%;
    right: 15%;
    animation: float-2 9s ease-in-out infinite;
}

/* Hero Wrapper */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    overflow: hidden;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-count {
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #000;
}

.social-proof-text .stars {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.social-proof-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.social-proof-text strong {
    color: var(--text-white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    flex: 1;
    min-width: 150px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(57, 255, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ==================== HERO VISUAL / DASHBOARD ==================== */
.hero-visual {
    position: relative;
    perspective: 1200px;
    z-index: 10;
}

/* Ambient Glow Orb behind Dashboard */
.glow-backdrop-orb {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.25) 0%, rgba(0, 240, 255, 0.15) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    animation: glow-pulse-bg 6s ease-in-out infinite alternate;
}

.dashboard-container {
    position: relative;
    transform: rotateY(-6deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.dashboard-main {
    padding: 24px;
    position: relative;
    z-index: 2;
    background: rgba(13, 18, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 25px rgba(57, 255, 20, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

/* Window Bar */
.dash-window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
    display: flex;
    gap: 7px;
}

.window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dots .dot.close {
    background: #FF5F56;
}

.window-dots .dot.minimize {
    background: #FFBD2E;
}

.window-dots .dot.expand {
    background: #27C93F;
}

.ticker-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    gap: 4px;
}

.ticker-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticker-tab:hover {
    color: var(--text-white);
}

.ticker-tab.active {
    background: rgba(57, 255, 20, 0.18);
    color: var(--primary-green);
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.dashboard-badge.live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(57, 255, 20, 0.12);
    border: 1px solid rgba(57, 255, 20, 0.35);
    border-radius: 50px;
    color: var(--primary-green);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.live-dot-pulse {
    width: 7px;
    height: 7px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-green);
    animation: pulse-radar 1.5s infinite;
}

/* Header Symbol Info */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dashboard-symbol-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.symbol-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(247, 147, 26, 0.05));
    border: 1px solid rgba(247, 147, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #F7931A;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.15);
}

.symbol-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.symbol-title h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

.leverage-badge {
    font-size: 0.62rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00F0FF, #39FF14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.symbol-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dashboard-profit {
    text-align: right;
}

.profit-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.profit-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.profit-badge-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profit-badge-pill.positive {
    background: rgba(57, 255, 20, 0.15);
    color: var(--primary-green);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.profit-subtext {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Timeframe Toolbar */
.chart-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.timeframe-group {
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px;
    border-radius: 8px;
}

.tf-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tf-btn:hover {
    color: var(--text-white);
}

.tf-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
    font-weight: 700;
}

.chart-tools-right {
    display: flex;
    gap: 8px;
}

.indicator-chip {
    font-size: 0.68rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 5px;
}

.indicator-chip.green {
    color: var(--primary-green);
    border-color: rgba(57, 255, 20, 0.2);
}

/* Chart Container & Scanning Laser */
.chart-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(15, 25, 45, 0.8) 0%, rgba(5, 10, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 10px 4px 10px;
}

.chart-scanline {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #39FF14, #00F0FF, transparent);
    box-shadow: 0 0 15px #39FF14, 0 0 8px #00F0FF;
    z-index: 4;
    animation: laser-scan 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.chart-peak-marker {
    position: absolute;
    top: 25px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(57, 255, 20, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(57, 255, 20, 0.4);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    animation: chart-glow-pulse 2.5s ease-in-out infinite alternate;
}

.chart-peak-marker .marker-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-green);
}

.chart-peak-marker .marker-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary-green);
}

.chart-svg {
    width: 100%;
    height: 190px;
    display: block;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 2.5s ease forwards 0.3s;
}

.chart-area {
    opacity: 0;
    animation: fade-in 1.2s ease forwards 1.2s;
}

.active-pulse-point {
    animation: float-1 3s ease-in-out infinite;
}

.active-pulse-ring {
    transform-origin: 395px 32px;
    animation: pulse-radar 2s infinite;
}

/* Dashboard Bottom Stats Strip */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.dash-stat:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
}

.dash-stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dash-stat-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-white);
}

.dash-stat-value.green {
    color: var(--primary-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}

.dash-stat-value.highlight {
    color: #00F0FF;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

/* ==================== FLOATING GLASS WIDGETS ==================== */
.floating-card {
    position: absolute;
    z-index: 5;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(57, 255, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(57, 255, 20, 0.25);
}

/* AI Signal Card (Top Left) */
.ai-signal-card {
    top: -24px;
    left: -35px;
    padding: 14px 16px;
    min-width: 190px;
}

.ai-signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ai-pulse-dot {
    width: 5px;
    height: 5px;
    background: #00F0FF;
    border-radius: 50%;
    box-shadow: 0 0 6px #00F0FF;
    animation: pulse-radar 1.2s infinite;
}

.ai-signal-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ai-signal-title {
    font-size: 0.68rem;
    color: var(--text-muted);
    display: block;
}

.ai-signal-type.buy {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.score-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-green) 0% 96.8%, rgba(255, 255, 255, 0.1) 96.8% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.25);
}

.score-circle span {
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-green);
}

.score-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: block;
    text-align: center;
    margin-top: 2px;
}

/* Order Stream Card (Top Right) */
.order-stream-card {
    top: -20px;
    right: -30px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.order-stream-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

.order-stream-title {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.order-stream-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.order-stream-time {
    font-size: 0.62rem;
    color: var(--text-secondary);
    display: block;
}

/* Sentiment Meter Card (Bottom Left) */
.sentiment-card {
    bottom: -15px;
    left: -25px;
    padding: 12px 16px;
    min-width: 195px;
}

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

.sentiment-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.sentiment-val {
    font-size: 0.85rem;
    font-weight: 800;
}

.sentiment-bar-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.sentiment-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #00F0FF);
    border-radius: 10px;
    box-shadow: 0 0 8px var(--primary-green);
    transition: width 1s ease;
}

/* Profit Streak Card (Bottom Right) */
.profit-streak-card {
    bottom: -22px;
    right: -25px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.streak-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 189, 46, 0.15);
    border: 1px solid rgba(255, 189, 46, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFBD2E;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(255, 189, 46, 0.2);
}

.streak-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.streak-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-green);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    animation: bounce-down 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== ABOUT SECTION ==================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    /* object-fit: cover; */
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 20, 0.8) 100%);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.students-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.students-badge i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.students-badge span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* About Content */
.about-content .section-title {
    text-align: left;
}

.about-content .section-description {
    text-align: left;
    margin: 0 0 32px 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== PLATFORM FEATURES — BENTO GRID ==================== */
.platform-features {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 30%, rgba(57, 255, 20, 0.04) 0%, transparent 60%);
}

/* Bento Grid container */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    margin-top: 50px;
}

/* Bento large cell: left column spanning 2 rows */
.bento-cell {
    border-radius: 24px;
    padding: 32px;
    background: rgba(10, 16, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-cell:hover {
    transform: translateY(-4px);
}

.bento-large {
    grid-row: 1 / 3;
}

.bento-medium {
    /* Default: occupies 1 row on right */
}

.bento-wide {
    grid-column: 1 / -1;
    /* spans full width */
}

/* Background glows */
.bento-bg-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.bento-bg-glow.green {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.3), transparent 70%);
}

.bento-bg-glow.cyan {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25), transparent 70%);
}

.bento-bg-glow.gold {
    background: radial-gradient(circle, rgba(255, 189, 46, 0.25), transparent 70%);
}

/* Green theme */
.green-theme {
    border-color: rgba(57, 255, 20, 0.15);
}

.green-theme:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(57, 255, 20, 0.12);
}

/* Cyan theme */
.cyan-theme {
    border-color: rgba(0, 240, 255, 0.15);
}

.cyan-theme:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.12);
}

/* Gold theme */
.gold-theme {
    border-color: rgba(255, 189, 46, 0.15);
}

.gold-theme:hover {
    border-color: rgba(255, 189, 46, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 189, 46, 0.12);
}

/* Stats wide bar: subtle gradient */
.stats-theme {
    background: rgba(10, 16, 26, 0.5);
    border-color: rgba(255, 255, 255, 0.06);
}

/* Top Row: icon + tag */
.bento-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bento-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.bento-icon-circle.green {
    background: rgba(57, 255, 20, 0.12);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.bento-icon-circle.cyan {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.bento-icon-circle.gold {
    background: rgba(255, 189, 46, 0.12);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.bento-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: pulse-radar 1.5s infinite;
}

.bento-tag.green {
    background: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.25);
}

.bento-tag.cyan {
    background: rgba(0, 240, 255, 0.1);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.bento-tag.gold {
    background: rgba(255, 189, 46, 0.1);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.25);
}

.bento-tag-dot.green {
    background: #39FF14;
}

.bento-tag-dot.cyan {
    background: #00F0FF;
}

.bento-tag-dot.gold {
    background: #FFBD2E;
}

/* Body text */
.bento-body {}

.bento-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.25;
}

.bento-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Live mini ticker widget (inside bento-large) */
.bento-live-widget {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-ticker-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-sym {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    width: 65px;
    flex-shrink: 0;
}

.ticker-bar-wrap {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.ticker-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--primary-green);
}

.ticker-bar-fill.red {
    background: #FF3366;
}

.ticker-val {
    font-size: 0.72rem;
    font-weight: 800;
    width: 65px;
    text-align: right;
}

.ticker-val.green {
    color: #39FF14;
}

.ticker-val.red {
    color: #FF3366;
}

.imgadd {
    display: flex;
    justify-content: center;
    align-items: center;

}

.imgadd img {
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: 14px;
}

/* Chip pills inside bento-large */
.bento-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.bento-chip {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bento-chip i {
    color: #39FF14;
    font-size: 0.65rem;
}

/* League stats row */
.bento-league-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 20px;
    margin-top: auto;
}

.bento-rank,
.bento-roi,
.bento-traders {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.rank-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.rank-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-white);
}

.rank-num.cyan {
    color: #00F0FF;
}

.rank-num.green {
    color: #39FF14;
}

.rank-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Shield badge for zero risk */
.bento-shield-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 189, 46, 0.08);
    border: 1px solid rgba(255, 189, 46, 0.2);
    border-radius: 14px;
    padding: 14px 20px;
    margin-top: auto;
}

.bento-shield-badge>i {
    font-size: 2rem;
    color: #FFBD2E;
}

.shield-big-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFBD2E;
    line-height: 1;
}

.shield-big-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Stats wide row */
.bento-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
    gap: 0;
}

.bento-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.bento-stat-num {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 900;
    line-height: 1;
}

.bento-stat-num.green {
    color: #39FF14;
}

.bento-stat-num.cyan {
    color: #00F0FF;
}

.bento-stat-num.gold {
    color: #FFBD2E;
}

.bento-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
}

.bento-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}



.features-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

/* Left Column: Vertical Feature Block Stream — extra bottom padding so there is room to scroll all 3 blocks into view */
.features-list-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
    min-height: 800px;
}

.feature-block-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(13, 20, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.feature-block-item:hover,
.feature-block-item.active {
    background: rgba(13, 20, 32, 0.85);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(57, 255, 20, 0.1);
    transform: translateX(6px);
}

.feature-block-item.cyan:hover,
.feature-block-item.cyan.active {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 240, 255, 0.1);
}

.feature-block-item.gold:hover,
.feature-block-item.gold.active {
    border-color: rgba(255, 189, 46, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 189, 46, 0.1);
}

.block-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block-num {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-green);
    background: rgba(57, 255, 20, 0.12);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.block-indicator.cyan .block-num {
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.3);
}

.block-indicator.gold .block-num {
    color: #FFBD2E;
    background: rgba(255, 189, 46, 0.12);
    border-color: rgba(255, 189, 46, 0.3);
}

.block-line {
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 10px;
    border-radius: 2px;
}

.feature-block-item.active .block-line {
    background: var(--primary-green);
    box-shadow: 0 0 8px var(--primary-green);
}

.block-content {
    flex-grow: 1;
}

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

.live-dot-mini {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-green);
    box-shadow: 0 0 8px var(--primary-green);
    animation: pulse-radar 1.5s infinite;
}

.live-dot-mini.cyan {
    background: #00F0FF;
    box-shadow: 0 0 8px #00F0FF;
}

.live-dot-mini.gold {
    background: #FFBD2E;
    box-shadow: 0 0 8px #FFBD2E;
}

.block-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.block-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.block-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 5px;
}

.chip i {
    color: var(--primary-green);
    font-size: 0.7rem;
}

.chip.cyan i {
    color: #00F0FF;
}

.chip.gold i {
    color: #FFBD2E;
}

/* Right Column: JS translateY sticky panel */
.features-preview-stage {
    align-self: flex-start;
    will-change: transform;
    transition: transform 0.1s linear;
}

.preview-glow-backdrop {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(57, 255, 20, 0.2) 0%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.preview-console-screen {
    position: relative;
    z-index: 2;
    padding: 24px;
    border-radius: 24px;
    background: rgba(10, 16, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(57, 255, 20, 0.1);
}

.console-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.console-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.console-title i {
    color: var(--primary-green);
}

.console-status.green {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(57, 255, 20, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.console-status .status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-green);
    animation: pulse-radar 1.5s infinite;
}

.console-display {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.display-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.display-panel:hover {
    border-color: rgba(57, 255, 20, 0.25);
    background: rgba(57, 255, 20, 0.03);
}

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

.panel-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.panel-title i {
    color: var(--primary-green);
}

.panel-tag {
    font-size: 0.62rem;
    font-weight: 800;
    color: #00F0FF;
    background: rgba(0, 240, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.depth-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.depth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    position: relative;
    padding: 4px 8px;
}

.depth-qty {
    color: var(--text-muted);
    z-index: 2;
    width: 80px;
}

.depth-price {
    color: var(--text-white);
    z-index: 2;
    width: 80px;
    text-align: right;
}

.depth-bar-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 85px;
    border-radius: 4px;
    opacity: 0.3;
}

.depth-bar-fill.buy {
    background: var(--primary-green);
}

.depth-bar-fill.sell {
    background: #FF3366;
}

.league-banner-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.league-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00F0FF;
    font-size: 1.1rem;
}

.league-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

.league-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.league-rank-badge {
    text-align: right;
}

.league-rank-badge span {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: #00F0FF;
}

.league-rank-badge strong {
    font-size: 0.9rem;
    color: var(--primary-green);
}

.security-shield-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 189, 46, 0.08), rgba(255, 189, 46, 0.02));
    border-color: rgba(255, 189, 46, 0.2);
}

.shield-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 189, 46, 0.15);
    border: 1px solid rgba(255, 189, 46, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFBD2E;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.shield-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFBD2E;
}

.shield-desc {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ==================== PROCESS / STEPPER SECTION ==================== */
.process {
    position: relative;
    padding: 50px 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(57, 255, 20, 0.04) 0%, rgba(0, 240, 255, 0.03) 40%, transparent 70%);
}

.stepper-container {
    margin-top: 50px;
}

/* Stepper Progress Tracker Bar (Top) */
.stepper-tracker {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.tracker-line {
    position: absolute;
    top: 24px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    z-index: 1;
}

.tracker-line-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #39FF14 0%, #00F0FF 50%, #FFBD2E 100%);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
}

.tracker-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tracker-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.node-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(13, 20, 32, 0.95);
    border: 2px solid var(--primary-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-ring.cyan {
    border-color: #00F0FF;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.node-ring.gold {
    border-color: #FFBD2E;
    box-shadow: 0 0 15px rgba(255, 189, 46, 0.4);
}

.node-num {
    position: absolute;
    margin-top: -30px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-green);
}

.tracker-node.cyan .node-num {
    color: #00F0FF;
}

.tracker-node.gold .node-num {
    color: #FFBD2E;
}

.node-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.3px;
    margin-top: 6px;
}

/* Steps Flow Cards Grid */
.steps-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    padding: 36px 28px 30px 28px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: rgba(13, 20, 32, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(57, 255, 20, 0.2);
}

.step-card.cyan-theme:hover {
    border-color: rgba(0, 240, 255, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 240, 255, 0.2);
}

.step-card.gold-theme:hover {
    border-color: rgba(255, 189, 46, 0.35);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 189, 46, 0.2);
}

/* Huge Watermark Step Number */
.watermark-step-num {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(57, 255, 20, 0.12);
    pointer-events: none;
    user-select: none;
    transition: all 0.4s ease;
}

.watermark-step-num.cyan {
    -webkit-text-stroke: 1.5px rgba(0, 240, 255, 0.12);
}

.watermark-step-num.gold {
    -webkit-text-stroke: 1.5px rgba(255, 189, 46, 0.12);
}

.step-card:hover .watermark-step-num {
    -webkit-text-stroke: 1.5px rgba(57, 255, 20, 0.3);
    transform: scale(1.05);
}

.step-card:hover .watermark-step-num.cyan {
    -webkit-text-stroke: 1.5px rgba(0, 240, 255, 0.3);
}

.step-card:hover .watermark-step-num.gold {
    -webkit-text-stroke: 1.5px rgba(255, 189, 46, 0.3);
}

/* Step Header */
.step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.step-pillar-pill {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(57, 255, 20, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(57, 255, 20, 0.3);
    letter-spacing: 0.5px;
}

.step-pillar-pill.cyan {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border-color: rgba(0, 240, 255, 0.3);
}

.step-pillar-pill.gold {
    background: rgba(255, 189, 46, 0.12);
    color: #FFBD2E;
    border-color: rgba(255, 189, 46, 0.3);
}

.step-status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulse-radar 1.5s infinite;
}

.step-status-pulse.cyan {
    background: #00F0FF;
    box-shadow: 0 0 10px #00F0FF;
}

.step-status-pulse.gold {
    background: #FFBD2E;
    box-shadow: 0 0 10px #FFBD2E;
}

/* Icon Portal */
.step-portal-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.05));
    border: 1px solid rgba(57, 255, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-portal-icon.cyan {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(0, 240, 255, 0.05));
    border-color: rgba(0, 240, 255, 0.3);
    color: #00F0FF;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.step-portal-icon.gold {
    background: linear-gradient(135deg, rgba(255, 189, 46, 0.2), rgba(255, 189, 46, 0.05));
    border-color: rgba(255, 189, 46, 0.3);
    color: #FFBD2E;
    box-shadow: 0 0 20px rgba(255, 189, 46, 0.15);
}

.step-card:hover .step-portal-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Title & Description */
.step-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.step-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Chips Group */
.step-chips-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.step-chip {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-chip i {
    color: var(--primary-green);
    font-size: 0.7rem;
}

.step-chip.cyan i {
    color: #00F0FF;
}

.step-chip.gold i {
    color: #FFBD2E;
}

/* Bottom Indicator */
.step-next-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-next-indicator.cyan {
    color: #00F0FF;
}

.step-next-indicator.gold {
    color: #FFBD2E;
}

.step-card:hover .step-next-indicator i {
    transform: translateX(5px);
}

/* ==================== SIMULATION TIERS SECTION ==================== */
.simulation-tiers {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.04) 0%, rgba(168, 85, 247, 0.03) 40%, transparent 70%);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.tier-card {
    padding: 32px 24px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: rgba(13, 20, 32, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.tier-card.featured-tier {
    border-color: rgba(255, 189, 46, 0.4);
    box-shadow: 0 15px 40px rgba(255, 189, 46, 0.12);
}

.featured-ribbon {
    position: absolute;
    top: 18px;
    right: -32px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #FFBD2E, #FF9900);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 35px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tier-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.tier-glow.green-glow {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.3) 0%, transparent 70%);
}

.tier-glow.cyan-glow {
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3) 0%, transparent 70%);
}

.tier-glow.gold-glow {
    background: radial-gradient(circle, rgba(255, 189, 46, 0.3) 0%, transparent 70%);
}

.tier-glow.purple-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
}

.tier-card:hover .tier-glow {
    opacity: 0.8;
}

/* Card Themes */
.tier-card.green-tier:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(57, 255, 20, 0.15);
}

.tier-card.cyan-tier:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.15);
}

.tier-card.gold-tier:hover {
    border-color: rgba(255, 189, 46, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 189, 46, 0.15);
}

.tier-card.purple-tier:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(168, 85, 247, 0.15);
}

/* Header & Icons */
.tier-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-icon {
    transform: scale(1.1) rotate(5deg);
}

.tier-icon.green {
    background: rgba(57, 255, 20, 0.12);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.tier-icon.cyan {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.tier-icon.gold {
    background: rgba(255, 189, 46, 0.12);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.tier-icon.purple {
    background: rgba(168, 85, 247, 0.12);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tier-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tier-badge.green {
    background: rgba(57, 255, 20, 0.1);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.25);
}

.tier-badge.cyan {
    background: rgba(0, 240, 255, 0.1);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.tier-badge.gold {
    background: rgba(255, 189, 46, 0.1);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.25);
}

.tier-badge.purple {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.25);
}

/* Title */
.tier-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

/* Points Box */
.tier-pts-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 20px;
}

.tier-pts-box i {
    font-size: 1rem;
    margin-right: 2px;
}

.tier-pts-box.green i {
    color: #39FF14;
}

.tier-pts-box.cyan i {
    color: #00F0FF;
}

.tier-pts-box.gold i {
    color: #FFBD2E;
}

.tier-pts-box.purple i {
    color: #A855F7;
}

.pts-value {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.pts-unit {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Details */
.tier-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.detail-row i {
    font-size: 0.85rem;
    width: 16px;
    color: var(--text-white);
    opacity: 0.7;
}

.detail-row strong {
    color: var(--text-white);
}

.footer-disclaimer {
    font-size: 12px;
    text-align: center;
    display: block;
    color: var(--text-secondary);
    padding: 15px 0;
}

/* Footer & Buttons */
.tier-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 900;
}

.price-value.green {
    color: #39FF14;
}

.price-value.cyan {
    color: #00F0FF;
}

.price-value.gold {
    color: #FFBD2E;
}

.price-value.purple {
    color: #A855F7;
}

.tier-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.tier-btn.green {
    background: rgba(57, 255, 20, 0.12);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.tier-btn.cyan {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.tier-btn.gold {
    background: linear-gradient(135deg, #FFBD2E, #FF9900);
    color: #000;
    border: none;
}

.tier-btn.purple {
    background: rgba(168, 85, 247, 0.12);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tier-btn:hover {
    transform: translateY(-2px);
}

.tier-btn.green:hover {
    background: rgba(57, 255, 20, 0.25);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.tier-btn.cyan:hover {
    background: rgba(0, 240, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.tier-btn.gold:hover {
    box-shadow: 0 0 20px rgba(255, 189, 46, 0.4);
}

.tier-btn.purple:hover {
    background: rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

/* ==================== TRUST & SECURITY SECTION ==================== */
.trust-security {
    position: relative;
    padding: 80px 0;
}

.trust-wrapper {
    padding: 50px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    background: rgba(13, 20, 32, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(57, 255, 20, 0.08) 0%, rgba(0, 240, 255, 0.05) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.trust-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.trust-pillar-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.trust-pillar-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

.trust-pillar-card.green:hover {
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.1);
}

.trust-pillar-card.cyan:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.1);
}

.trust-pillar-card.gold:hover {
    border-color: rgba(255, 189, 46, 0.3);
    box-shadow: 0 10px 25px rgba(255, 189, 46, 0.1);
}

.trust-pillar-card.purple:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.1);
}

.pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pillar-icon-box.green {
    background: rgba(57, 255, 20, 0.12);
    color: #39FF14;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.pillar-icon-box.cyan {
    background: rgba(0, 240, 255, 0.12);
    color: #00F0FF;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.pillar-icon-box.gold {
    background: rgba(255, 189, 46, 0.12);
    color: #FFBD2E;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.pillar-icon-box.purple {
    background: rgba(168, 85, 247, 0.12);
    color: #A855F7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.pillar-content {
    flex-grow: 1;
}

.pillar-status-badge {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.pillar-status-badge.green {
    color: #39FF14;
}

.pillar-status-badge.cyan {
    color: #00F0FF;
}

.pillar-status-badge.gold {
    color: #FFBD2E;
}

.pillar-status-badge.purple {
    color: #A855F7;
}

.pillar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 2px;
}

.pillar-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.trust-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.trust-btn {
    padding: 16px 36px;
    font-size: 1rem;
}

.trust-sub-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-sub-note i {
    color: var(--primary-green);
}

/* ==================== COURSES SECTION ==================== */
.courses {
    background: var(--bg-secondary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.course-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: var(--shadow-glow);
}

.course-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.course-card:hover .course-card-border {
    opacity: 1;
}

.course-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.course-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.course-badge.popular {
    background: rgba(0, 200, 255, 0.1);
    color: var(--blue-glow);
    border-color: rgba(0, 200, 255, 0.2);
}

.course-badge.premium {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.2);
}

.course-badge.new {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
    border-color: rgba(255, 107, 107, 0.2);
}

.course-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.course-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-meta i {
    color: var(--primary-green);
    font-size: 0.75rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
}

.price-original {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.course-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition-normal);
}

.course-btn:hover {
    background: var(--primary-green);
    color: #000;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background-image: url(images/imag3.png);
    background-position: top right;
    background-size: cover;
    background-attachment: fixed;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.92) 0%, rgba(11, 19, 32, 0.88) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-banner-icon {
    margin-bottom: 24px;
    display: inline-flex;
    padding: 16px;
    background: rgba(57, 255, 20, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.cta-banner-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-banner-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== WHY CHOOSE US ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: var(--shadow-glow);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

/* ==================== TRADING BENEFITS ==================== */
.trading-benefits {
    background: #0b1018;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-image {
    position: relative;
}

.benefits-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.benefits-img-wrapper img {
    width: 100%;
    /* height: 450px; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefits-img-wrapper:hover img {
    transform: scale(1.05);
}

.benefits-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 20, 0.7) 100%);
}

.benefits-glass-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.bgc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(57, 255, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.bgc-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.bgc-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Benefits Content */
.benefits-content .section-title {
    text-align: left;
}

.benefits-content .section-description {
    text-align: left;
    margin: 0 0 32px 0;
}

.benefits-checklist {
    margin-bottom: 36px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.checklist-item:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.04);
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.check-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.check-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    padding: 32px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(57, 255, 20, 0.2);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(57, 255, 20, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-profit {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-profit span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-profit strong {
    font-size: 1rem;
    color: var(--primary-green);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-green);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95) 0%, rgba(11, 19, 32, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item i {
    color: var(--primary-green);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact ul li i {
    color: var(--primary-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}