

html, body {
    font-family: 'Space Grotesk', sans-serif;
}

.menu {
  display: flex;
  gap: 1rem;
}

.menu li {
  list-style: none;
}

.menu li a {
  position: relative;
  display: block;
  text-transform: uppercase;
  margin: 15px 0;
  padding: 5px 10px;
  text-decoration: none;
  color: #262626;
  font-size: 15px;
  font-weight: 530;
  transition: 0.5s;
  z-index: 1;
}

/* Top & Bottom Borders */
.menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid #262626;
  border-bottom: 2px solid #262626;
  transform: scaleY(2);
  opacity: 0;
  transition: 0.3s;
}

/* Background Fill */
.menu li a::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  transform: scaleY(0);
  opacity: 0;
  transition: 0.3s cubic-bezier(.77,0,.18,1);
  z-index: -1;
}

/* Hover Animation */
.menu li a:hover {
  color: #fff;
}

.menu li a:hover::before {
  transform: scaleY(1);
  opacity: 1;
}

.menu li a:hover::after {
  transform: scaleY(1);
  opacity: 1;
}

header {
  animation: headerReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes headerReveal {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.info{
  
    position: relative;
    overflow: hidden;

}


        #canvas-container {
          
            z-index: 0;
            position: absolute;
    inset: 0;
    pointer-events: none;
        }

        .content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header p {
            font-size: 1.1rem;
            color: #7a8999;
            letter-spacing: 2px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: clamp(320px, 90vw, 1200px);
        }

        .feature-card {
            width: 100%;
            max-width: 440px;
            justify-self: center;
            background: linear-gradient(145deg, rgba(20, 30, 40, 0.9), rgba(10, 15, 20, 0.95));
            border: 1px solid rgba(0, 212, 170, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 170, 0.1);
        }

        .feature-card.emotionless { --accent: #00d4aa; }
        .feature-card.backtesting { --accent: #00a8cc; }
        .feature-card.execution { --accent: #ffd700; }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 25px;
            position: relative;
        }

        .icon-ring {
            position: absolute;
            border: 2px solid var(--accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse-ring 2s ease-out infinite;
        }

        .feature-card.emotionless .icon-ring:nth-child(1) { width: 80px; height: 80px; top: 0; left: 0; }
        .feature-card.emotionless .icon-ring:nth-child(2) { width: 60px; height: 60px; top: 10px; left: 10px; animation-delay: 0.3s; }
        .feature-card.emotionless .icon-ring:nth-child(3) { width: 40px; height: 40px; top: 20px; left: 20px; animation-delay: 0.6s; }

        .icon-core {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            top: 30px;
            left: 30px;
            box-shadow: 0 0 20px var(--accent);
        }

        .feature-card.backtesting .icon-visualization {
            position: absolute;
            width: 80px;
            height: 60px;
            top: 10px;
            left: 0;
        }

        .candlestick {
            position: absolute;
            width: 8px;
            background: var(--accent);
            border-radius: 2px;
            animation: candle-dance 1.5s ease-in-out infinite;
        }

        .candlestick:nth-child(1) { left: 5px; height: 30px; top: 15px; animation-delay: 0s; }
        .candlestick:nth-child(2) { left: 18px; height: 45px; top: 5px; animation-delay: 0.15s; }
        .candlestick:nth-child(3) { left: 31px; height: 25px; top: 20px; animation-delay: 0.3s; }
        .candlestick:nth-child(4) { left: 44px; height: 50px; top: 0; animation-delay: 0.45s; }
        .candlestick:nth-child(5) { left: 57px; height: 35px; top: 10px; animation-delay: 0.6s; }
        .candlestick:nth-child(6) { left: 70px; height: 40px; top: 8px; animation-delay: 0.75s; }

        .feature-card.execution .icon-bolt {
            position: absolute;
            width: 40px;
            height: 70px;
            top: 5px;
            left: 20px;
        }

        .bolt-main {
            position: absolute;
            width: 100%;
            height: 100%;
            clip-path: polygon(50% 0%, 60% 35%, 80% 35%, 45% 60%, 55% 60%, 20% 100%, 40% 55%, 20% 55%, 50% 30%, 35% 30%);
            background: var(--accent);
            animation: bolt-flash 0.8s ease-in-out infinite;
        }

        .bolt-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            clip-path: polygon(50% 0%, 60% 35%, 80% 35%, 45% 60%, 55% 60%, 20% 100%, 40% 55%, 20% 55%, 50% 30%, 35% 30%);
            background: var(--accent);
            filter: blur(10px);
            opacity: 0.5;
            animation: bolt-flash 0.8s ease-in-out infinite;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #fff;
            letter-spacing: 1px;
        }

        .feature-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #8b9cb3;
        }

        .stats-row {
            display: flex;
            gap: 40px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .stat {
            text-align: left;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            display: block;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #5a6a7a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
            100% { transform: scale(1); opacity: 0.3; }
        }

        @keyframes candle-dance {
            0%, 100% { transform: scaleY(1); opacity: 0.6; }
            50% { transform: scaleY(1.1); opacity: 1; }
        }

        @keyframes bolt-flash {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        .cta-section {
            margin-top: 60px;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #00d4aa, #00a8cc);
            color: #0a0e14;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(0, 212, 170, 0.4);
        }

        .floating-data {
            position: fixed;
            /*font-family: 'Courier New', monospace;*/
            font-size: 11px;
            color: rgba(0, 212, 170, 0.15);
            pointer-events: none;
            z-index: 5;
            white-space: nowrap;
        }

        .live-indicator {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(10, 14, 20, 0.8);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid rgba(0, 212, 170, 0.3);
            z-index: 100;
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background: #00d4aa;
            border-radius: 50%;
            animation: live-pulse 1s ease-in-out infinite;
        }

        .live-text {
            font-size: 0.8rem;
            color: #00d4aa;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        @keyframes live-pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 10px #00d4aa; }
            50% { opacity: 0.5; box-shadow: 0 0 5px #00d4aa; }
        }

        
