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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #060A10;
    color: #E8F4F8;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: rgba(0, 212, 255, 0.3);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0E17;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00D4FF, #0A4F6E);
    border-radius: 4px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    transition: transform 0.5s ease-out;
}

.gradient-orb--primary {
    width: 600px;
    height: 600px;
    top: 5%;
    left: 15%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
}

.gradient-orb--secondary {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(123, 104, 238, 0.08) 0%, transparent 70%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: scanLine 10s linear infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { top: 100%; opacity: 0; }
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav--scrolled {
    background: rgba(6, 10, 16, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 16px 0;
}

.nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo__icon {
    width: 37px;
    height: 30px;
    object-fit: cover;
}

.logo__text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #E8F4F8 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav__link {
    color: #8BA3B0;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav__link:hover {
    color: #00D4FF;
}

.nav__button {
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.3);
}

.nav__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle__line {
    width: 26px;
    height: 2px;
    background: #00D4FF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 320px;
    background: rgba(6, 10, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    transform: translateX(100%);
    transition: all 0.3s ease;
    border-left: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-menu__link {
    color: #E8F4F8;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.mobile-menu__button {
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    padding: 18px 28px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    z-index: 1;
}

.hero__content {
    flex: 1 1 500px;
    max-width: 620px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #00FF88;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6);
    }
    50% { 
        box-shadow: 0 0 0 12px rgba(0, 255, 136, 0);
    }
}

.hero__title {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero__title-highlight {
    background: linear-gradient(135deg, #00D4FF 0%, #7B68EE 50%, #00FF88 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__subtitle {
    font-size: 19px;
    line-height: 1.75;
    color: #8BA3B0;
    margin-bottom: 44px;
    max-width: 540px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    padding: 20px 40px;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 36px rgba(0, 212, 255, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.45);
}

.btn--primary .arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn--primary:hover .arrow {
    transform: translateX(4px);
}

.btn--secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.35);
    padding: 18px 36px;
    border-radius: 14px;
    color: #00D4FF;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--secondary:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
}

.btn--secondary .play-icon {
    font-size: 12px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat__value {
    font-size: 30px;
    font-weight: 700;
    color: #00D4FF;
    font-family: 'JetBrains Mono', monospace;
}

.stat__label {
    font-size: 12px;
    color: #6B8490;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat__divider {
    width: 1px;
    height: 48px;
    background: rgba(0, 212, 255, 0.15);
}

/* ==================== SONAR VISUALIZATION ==================== */
.hero__visual {
    flex: 1 1 420px;
    max-width: 520px;
    aspect-ratio: 1;
    position: relative;
}

.sonar {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sonar__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sonar__ring--1 {
    width: 90%;
    height: 90%;
}

.sonar__ring--2 {
    width: 70%;
    height: 70%;
    border-color: rgba(0, 212, 255, 0.2);
}

.sonar__ring--3 {
    width: 50%;
    height: 50%;
    border-color: rgba(0, 212, 255, 0.25);
}

.sonar__ring--4 {
    width: 30%;
    height: 30%;
    border-color: rgba(0, 212, 255, 0.3);
    animation: sonarPulse 3s ease-out infinite;
}

@keyframes sonarPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.sonar__sweep {
    position: absolute;
    width: 50%;
    height: 2px;
    top: 50%;
    left: 50%;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.9), transparent);
    animation: sonarSweep 4s linear infinite;
}

@keyframes sonarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sonar__center {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00D4FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
    z-index: 5;
    position: relative;
}

.sonar__center-icon {
    font-size: 28px;
    color: #00D4FF;
}

.signal-blip {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 4;
    animation: blipPulse 2s ease-in-out infinite;
}

.signal-blip--1 {
    top: 18%;
    left: 22%;
    background: #00D4FF;
    box-shadow: 0 0 24px #00D4FF;
    animation-delay: 0s;
}

.signal-blip--2 {
    top: 28%;
    right: 18%;
    background: #7B68EE;
    box-shadow: 0 0 24px #7B68EE;
    animation-delay: 0.5s;
}

.signal-blip--3 {
    bottom: 32%;
    left: 15%;
    background: #00FF88;
    box-shadow: 0 0 24px #00FF88;
    animation-delay: 1s;
}

.signal-blip--4 {
    bottom: 20%;
    right: 25%;
    background: #FFD700;
    box-shadow: 0 0 24px #FFD700;
    animation-delay: 1.5s;
}

@keyframes blipPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.blip-label {
    position: absolute;
    left: 24px;
    top: -2px;
    font-size: 11px;
    font-weight: 600;
    color: #E8F4F8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ==================== FEATURES SECTION ==================== */
.features {
    position: relative;
    padding: 140px 40px;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #00D4FF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #8BA3B0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 24px;
    padding: 44px 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card--options::before { background: #00D4FF; }
.feature-card--darkpool::before { background: #7B68EE; }
.feature-card--insider::before { background: #00FF88; }
.feature-card--congress::before { background: #FFD700; }

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 24px 60px rgba(0, 212, 255, 0.12);
}

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

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 28px;
    margin-bottom: 28px;
}

.feature-card--options .feature-card__icon {
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
}

.feature-card--darkpool .feature-card__icon {
    background: rgba(123, 104, 238, 0.1);
    color: #7B68EE;
}

.feature-card--insider .feature-card__icon {
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
}

.feature-card--congress .feature-card__icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.feature-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.feature-card__description {
    font-size: 15px;
    color: #8BA3B0;
    line-height: 1.7;
}

.feature-card__indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-card__indicator {
    opacity: 0.3;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works {
    position: relative;
    padding: 140px 40px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.process {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process__line {
    position: absolute;
    left: 23px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(180deg, #00D4FF 0%, #7B68EE 50%, #00FF88 100%);
    opacity: 0.3;
}

.process__step {
    display: flex;
    gap: 36px;
    padding: 36px 0;
}

.process__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00D4FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: #00D4FF;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process__content {
    padding-top: 10px;
}

.process__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.process__desc {
    font-size: 16px;
    color: #8BA3B0;
    line-height: 1.7;
}

/* ==================== MODERN VIDEO PREVIEW SECTION ==================== */
.video-preview-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.video-preview {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(123, 104, 238, 0.05) 100%);
}

/* Animated border glow effect */
.video-preview::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00D4FF, #7B68EE, #00FF88, #00D4FF);
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.video-preview:hover::before {
    opacity: 1;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.video-preview__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0A0E17;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video thumbnail/preview */
.video-preview__thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-preview:hover .video-preview__thumbnail {
    opacity: 0.9;
    transform: scale(1.03);
}

/* Gradient overlay */
.video-preview__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(6, 10, 16, 0.4) 100%),
        linear-gradient(180deg, rgba(6, 10, 16, 0.1) 0%, rgba(6, 10, 16, 0.5) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-preview:hover .video-preview__overlay {
    opacity: 0.7;
}

/* Play button container */
.video-preview__play {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Animated rings around play button */
.video-preview__play-rings {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    pointer-events: none;
}

.video-preview__play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: playRingPulse 2.5s ease-out infinite;
}

.video-preview__play-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.video-preview__play-ring:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.video-preview__play-ring:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

@keyframes playRingPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Play button */
.video-preview__play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(10, 79, 110, 0.9) 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 40px rgba(0, 212, 255, 0.4),
        0 0 0 0 rgba(0, 212, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.video-preview:hover .video-preview__play-btn {
    transform: scale(1.1);
    box-shadow: 
        0 12px 50px rgba(0, 212, 255, 0.5),
        0 0 0 12px rgba(0, 212, 255, 0.15);
}

.video-preview__play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.video-preview:hover .video-preview__play-btn::after {
    transform: scale(1.1);
}

/* Play button label */
.video-preview__label {
    font-size: 15px;
    font-weight: 600;
    color: #E8F4F8;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-preview:hover .video-preview__label {
    opacity: 1;
}

/* Duration badge */
.video-preview__duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: #E8F4F8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Corner accent decoration */
.video-preview__corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.video-preview__corner--tl {
    top: 16px;
    left: 16px;
    border-top: 2px solid rgba(0, 212, 255, 0.5);
    border-left: 2px solid rgba(0, 212, 255, 0.5);
}

.video-preview__corner--tr {
    top: 16px;
    right: 16px;
    border-top: 2px solid rgba(0, 212, 255, 0.5);
    border-right: 2px solid rgba(0, 212, 255, 0.5);
}

.video-preview__corner--bl {
    bottom: 16px;
    left: 16px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
    border-left: 2px solid rgba(0, 212, 255, 0.5);
}

.video-preview__corner--br {
    bottom: 16px;
    right: 16px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
    border-right: 2px solid rgba(0, 212, 255, 0.5);
}

/* Scan line animation on the video preview */
.video-preview__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    animation: videoScanLine 3s linear infinite;
    pointer-events: none;
}

@keyframes videoScanLine {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.video-modal__container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== ALERT DEMO SECTION ==================== */
.alert-demo {
    position: relative;
    padding: 140px 40px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

.demo-card {
    background: rgba(0, 212, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 24px;
    padding: 44px;
    max-width: 800px;
    margin: 0 auto;
}

.demo-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.demo-card__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
}

.demo-card__badge-dot {
    width: 10px;
    height: 10px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.demo-card__badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-card__time {
    font-size: 13px;
    color: #6B8490;
    font-family: 'JetBrains Mono', monospace;
}

.demo-card__ticker {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.demo-card__symbol {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
}

.demo-card__company {
    font-size: 18px;
    color: #8BA3B0;
}

.demo-card__scores {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.score-label {
    font-size: 14px;
    color: #8BA3B0;
    width: 120px;
    flex-shrink: 0;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.score-bar__fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.score-bar__fill--options { background: #00D4FF; }
.score-bar__fill--darkpool { background: #7B68EE; }
.score-bar__fill--insider { background: #00FF88; }
.score-bar__fill--congress { background: #FFD700; }

.score-text {
    font-size: 15px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    min-width: 36px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    position: relative;
    padding: 140px 40px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.pricing-card {
    background: rgba(0, 212, 255, 0.04);
    border: 2px solid rgba(0, 212, 255, 0.25);
    border-radius: 32px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.1);
}

.pricing-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    color: #fff;
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-card__name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-card__description {
    font-size: 17px;
    color: #8BA3B0;
    margin-bottom: 36px;
    line-height: 1.6;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 44px;
}

.pricing-card__currency {
    font-size: 32px;
    font-weight: 600;
    color: #00D4FF;
}

.pricing-card__amount {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -4px;
}

.pricing-card__period {
    font-size: 20px;
    color: #6B8490;
}

.pricing-card__features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 44px;
    text-align: left;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: #B0C4CE;
}

.pricing-card__check {
    color: #00FF88;
    font-weight: 700;
    font-size: 16px;
}

.pricing-card__button {
    width: 100%;
    max-width: 360px;
    padding: 22px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.35);
    transition: all 0.3s ease;
}

.pricing-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 56px rgba(0, 212, 255, 0.45);
}

/* ==================== CTA SECTION ==================== */
.cta {
    position: relative;
    padding: 140px 40px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.cta__content {
    flex: 1 1 450px;
}

.cta__title {
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.cta__subtitle {
    font-size: 19px;
    color: #8BA3B0;
    margin-bottom: 44px;
    max-width: 500px;
    line-height: 1.75;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #00D4FF 0%, #0A4F6E 100%);
    border: none;
    padding: 22px 52px;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.35);
    width: fit-content;
}

.cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 56px rgba(0, 212, 255, 0.45);
}

.cta__note {
    font-size: 14px;
    color: #6B8490;
}

.cta__visual {
    flex: 1 1 320px;
    max-width: 420px;
    opacity: 0.5;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 80px 40px 44px;
    z-index: 1;
}

.footer__content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.footer__brand {
    flex: 1 1 320px;
    max-width: 340px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
}

.footer__logo svg {
    width: 36px;
    height: 36px;
}

.footer__tagline {
    font-size: 15px;
    color: #6B8490;
    line-height: 1.7;
}

.footer__links {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.footer__link {
    font-size: 15px;
    color: #6B8490;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #00D4FF;
}

.footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    font-size: 14px;
    color: #6B8490;
}

.footer__disclaimer {
    font-size: 12px;
    color: #4A5B65;
    max-width: 440px;
    text-align: right;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 24px 80px;
    }
    
    .hero__content {
        max-width: 100%;
    }
    
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__visual {
        max-width: 400px;
        width: 100%;
    }
    
    .cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta__actions {
        align-items: center;
    }
    
    .video-preview {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero__title {
        letter-spacing: -1.5px;
    }
    
    .hero__stats {
        gap: 24px;
    }
    
    .stat__divider {
        display: none;
    }
    
    .features, .how-it-works, .pricing, .cta {
        padding: 80px 20px;
    }
    
    .video-modal__container {
        width: 95%;
    }

    .video-modal__close {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .video-preview-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .video-preview__play-btn {
        width: 64px;
        height: 64px;
    }
    
    .video-preview__play-btn::after {
        border-width: 10px 0 10px 16px;
        margin-left: 3px;
    }
    
    .video-preview__label {
        font-size: 13px;
    }
    
    .video-preview__play-rings {
        width: 100px;
        height: 100px;
    }
    
    .video-preview__play-ring:nth-child(1) {
        width: 70px;
        height: 70px;
    }
    
    .video-preview__play-ring:nth-child(2) {
        width: 85px;
        height: 85px;
    }
    
    .video-preview__play-ring:nth-child(3) {
        width: 100px;
        height: 100px;
    }
    
    .video-preview__corner {
        width: 24px;
        height: 24px;
    }
    
    .video-preview__corner--tl,
    .video-preview__corner--tr {
        top: 10px;
    }
    
    .video-preview__corner--bl,
    .video-preview__corner--br {
        bottom: 10px;
    }
    
    .video-preview__corner--tl,
    .video-preview__corner--bl {
        left: 10px;
    }
    
    .video-preview__corner--tr,
    .video-preview__corner--br {
        right: 10px;
    }
    
    .video-preview__duration {
        bottom: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .flow-table__header,
    .flow-table__row {
        grid-template-columns: 80px 80px 80px 1fr;
        gap: 12px;
        padding: 12px 14px;
    }
    
    .demo-card {
        padding: 28px 20px;
    }
    
    .demo-card__symbol {
        font-size: 32px;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer__links {
        gap: 48px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn--primary, .btn--secondary {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card {
        padding: 44px 28px;
    }
    
    .pricing-card__amount {
        font-size: 60px;
    }
    
    .video-preview__play-btn {
        width: 56px;
        height: 56px;
    }
    
    .video-preview__play-btn::after {
        border-width: 8px 0 8px 13px;
    }
    
    .video-preview__label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* ==================== VALUE CALLOUT ==================== */
.value-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 700px;
    margin: 80px auto 0;
    padding: 32px 40px;
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
}

.value-callout__icon {
    font-size: 32px;
    flex-shrink: 0;
}

.value-callout__content {
    flex: 1;
}

.value-callout__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #E8F4F8;
}

.value-callout__text {
    font-size: 16px;
    color: #8BA3B0;
    line-height: 1.7;
}

/* ==================== DISCORD TOOLS SECTION ==================== */
.discord-tools {
    position: relative;
    padding: 140px 40px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

/* Tier Comparison Cards */
.tier-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.tier-card {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    transition: all 0.4s ease;
}

.tier-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1);
}

.tier-card--primary {
    border-color: rgba(0, 255, 136, 0.25);
    background: rgba(0, 255, 136, 0.04);
}

.tier-card--primary:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.1);
}

.tier-card__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.tier-card--primary .tier-card__badge {
    background: linear-gradient(135deg, #4ADE80 0%, #166534 100%);
    color: #060A10;
    border-color: transparent;
}

.tier-card__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.tier-card__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tier-card__description {
    font-size: 16px;
    color: #8BA3B0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tier-card__highlight {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.tier-card--primary .tier-card__highlight {
    border-color: rgba(0, 255, 136, 0.15);
}

.tier-card__highlight-text {
    font-size: 14px;
    font-weight: 500;
    color: #00D4FF;
}

.tier-card--primary .tier-card__highlight-text {
    color: #00FF88;
}

/* Bot Stats */
.bot-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 48px 40px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.bot-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.bot-stat__number {
    font-size: 48px;
    font-weight: 800;
    color: #00D4FF;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -2px;
    line-height: 1;
}

.bot-stat__label {
    font-size: 14px;
    color: #8BA3B0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.bot-stat__divider {
    width: 1px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
}

/* Command Categories */
.command-categories {
    margin-bottom: 60px;
}

.command-categories__title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 36px;
    color: #8BA3B0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.command-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 28px 32px;
    background: rgba(0, 212, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.command-category:hover {
    border-color: rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.04);
}

.command-category__icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.command-category__name {
    font-size: 17px;
    font-weight: 600;
    color: #E8F4F8;
}

.command-category__desc {
    font-size: 14px;
    color: #6B8490;
    line-height: 1.6;
}

/* Tools Note */
.tools-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 36px;
    background: rgba(123, 104, 238, 0.06);
    border: 1px solid rgba(123, 104, 238, 0.2);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tools-note__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.tools-note__text {
    font-size: 15px;
    color: #8BA3B0;
    line-height: 1.7;
}

.tools-note__text strong {
    color: #B0C4CE;
}

/* ==================== UPDATED PRICING FEATURES ==================== */
.pricing-features-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 44px;
    text-align: left;
}

.pricing-feature-group {
    padding: 0 20px;
}

.pricing-feature-group__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    color: #E8F4F8;
}

.pricing-features-split .pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}

.pricing-features-split .pricing-card__feature {
    font-size: 15px;
}

/* ==================== RESPONSIVE FOR NEW SECTIONS ==================== */
@media (max-width: 768px) {
    .discord-tools {
        padding: 80px 20px;
    }
    
    .tier-comparison {
        gap: 24px;
    }
    
    .tier-card {
        padding: 32px 28px;
    }
    
    .tier-card__icon {
        font-size: 40px;
    }
    
    .tier-card__title {
        font-size: 22px;
    }
    
    .bot-stats {
        gap: 32px;
        padding: 36px 24px;
    }
    
    .bot-stat__number {
        font-size: 36px;
    }
    
    .bot-stat__divider {
        display: none;
    }
    
    .command-grid {
        grid-template-columns: 1fr;
    }
    
    .command-category {
        padding: 24px;
    }
    
    .tools-note {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    
    .value-callout {
        flex-direction: column;
        gap: 16px;
        padding: 28px 24px;
        margin-top: 60px;
    }
    
    .pricing-features-split {
        gap: 32px;
    }
    
    .pricing-feature-group {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .tier-card__title {
        font-size: 20px;
    }
    
    .bot-stat__number {
        font-size: 32px;
    }
    
    .bot-stats {
        flex-direction: column;
        gap: 24px;
    }
}
