/* ===== Winance AI - Premium Trading Design ===== */

:root {
    /* Background Colors */
    --bg: #0B0E11;
    --bg-elevated: #1E2329;
    --bg-card: #181A20;
    --bg-hover: #2B3139;

    /* Text Colors */
    --text: #EAECEF;
    --text-secondary: #848E9C;
    --text-muted: #5E6673;

    /* Brand Colors */
    --gold: #F0B90B;
    --gold-light: #FCD535;
    --gold-dark: #C99400;

    /* Status Colors */
    --green: #0ECB81;
    --red: #F6465D;

    /* Effects */
    --glow: 0 0 30px rgba(240, 185, 11, 0.25);
    --glow-intense: 0 0 50px rgba(240, 185, 11, 0.4);
    --border: rgba(234, 236, 239, 0.08);
    --border-hover: rgba(240, 185, 11, 0.3);

    /* Typography */
    --font: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    cursor: none;
    line-height: 1.6;
}

/* Swiper */
.swiper {
    width: 100%;
    height: 100vh;
}

/* Mobile: Disable Swiper, use normal scrolling */
body.mobile-scroll {
    overflow-y: auto;
    overflow-x: hidden;
}

body.mobile-scroll .swiper {
    height: auto;
    margin-top: 65px;
    overflow: visible;
}

body.mobile-scroll .swiper-wrapper {
    display: flex;
    flex-direction: column;
    height: auto !important;
    transform: none !important;
}

body.mobile-scroll .swiper-slide {
    height: auto !important;
    min-height: auto;
    flex-shrink: 0;
    width: 100% !important;
    padding: 20px 16px 30px;
}

body.mobile-scroll .swiper-pagination {
    display: none;
}

.swiper-slide {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    padding: 100px 20px 40px;
    box-sizing: border-box;
}

.swiper-pagination {
    right: 20px !important;
    left: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(240, 185, 11, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s;
    border: 1px solid var(--gold) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1 !important;
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--gold);
}

::selection {
    background: var(--gold);
    color: var(--bg);
}

/* ===== Custom Cursor ===== */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-trail.hover {
    width: 50px;
    height: 50px;
    border-color: var(--gold-light);
}

/* ===== Neural Network Canvas ===== */
#neuralCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

/* ===== Floating Orbs ===== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.12) 0%, transparent 60%);
    top: -200px;
    right: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.08) 0%, transparent 60%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 203, 129, 0.06) 0%, transparent 60%);
    top: 40%;
    left: 25%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -30px); }
    50% { transform: translate(-20px, 20px); }
    75% { transform: translate(-30px, -20px); }
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    background: linear-gradient(180deg, rgba(11, 14, 17, 0.95) 0%, rgba(11, 14, 17, 0.8) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(240, 185, 11, 0.3));
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.logo-ai {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    border-color: var(--gold);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 14, 17, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 12px 24px;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-waitlist {
    margin-top: 16px;
    padding: 16px 40px;
    font-size: 16px;
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .btn-nav-desktop {
        display: none;
    }
}

/* Nav Button */
.btn-nav {
    position: relative;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-nav:hover {
    border-color: var(--gold);
    background: rgba(240, 185, 11, 0.08);
}

.btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent 40%, rgba(240, 185, 11, 0.1) 50%, transparent 60%);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}

/* ===== Common Styles ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title span {
    display: block;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== Hero Section ===== */
.hero {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

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

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

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-line {
    display: block;
}

.word {
    display: inline-block;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 450px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Main CTA Button */
.btn-main {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 8px;
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.btn-content svg {
    width: 20px;
    height: 20px;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-main:hover .btn-glow {
    transform: translateX(100%);
}

/* Outline Button */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-outline:hover {
    border-color: var(--text-secondary);
    background: var(--bg-elevated);
}

.btn-outline:hover svg {
    transform: translate(3px, -3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value-wrap {
    display: flex;
    align-items: baseline;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-unit {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
}

.stat-label-feature {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* Hero Visual - System Diagram */
.hero-visual {
    width: 500px;
    height: 540px;
    flex-shrink: 0;
    position: relative;
    animation: fadeIn 1s ease 0.5s both;
}

.system-diagram-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.system-diagram-container svg {
    width: 100%;
    height: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    animation: fadeIn 1s ease 1s both;
}

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

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

@keyframes scroll {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
}

/* ===== Trusted Section ===== */
.trusted {
    width: 100%;
        display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
}

.trusted-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.trusted-header {
    margin-bottom: 50px;
}

.trusted-header .section-title {
    font-size: clamp(28px, 4vw, 42px);
}

.trusted-header .section-desc {
    font-size: 15px;
}

.exchange-showcase {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.exchange-main {
    flex: 1;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.1) 0%, rgba(240, 185, 11, 0.02) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.exchange-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.exchange-main-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.exchange-main-icon svg {
    width: 32px;
    height: 32px;
    color: var(--bg);
}

.exchange-main-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.exchange-main-info p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.exchange-main-info .exchange-status.active {
    background: rgba(14, 203, 129, 0.15);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.exchange-main-features {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.exchange-main-features span {
    background: var(--bg);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.exchange-coming {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}

.exchange-coming h4 {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exchange-coming-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exchange-coming-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.exchange-coming-item .exchange-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.exchange-coming-item .exchange-status.coming {
    background: rgba(240, 185, 11, 0.1);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ===== Features Section ===== */
.features {
    width: 100%;
        padding: 60px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

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

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(240, 185, 11, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-inner {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.feature-card:hover .card-icon {
    background: rgba(240, 185, 11, 0.15);
    border-color: var(--gold);
    box-shadow: var(--glow);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-metric {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.metric-value {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.metric-label {
    font-size: 11px;
    color: var(--text-muted);
}

/* Ensemble Visual */
.ensemble-visual {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
    text-align: center;
}

.ensemble-center {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    padding: 16px 32px;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: var(--glow);
    position: relative;
    z-index: 2;
}

.ensemble-center span {
    display: block;
}

.ensemble-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: pulseLine 2s ease-in-out infinite;
}

.line-1 { top: 50%; left: -80px; }
.line-2 { top: 50%; right: -80px; }
.line-3 { top: -30px; left: 50%; transform: rotate(90deg); }
.line-4 { bottom: -30px; left: 50%; transform: rotate(90deg); }

@keyframes pulseLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== How It Works Section ===== */
.how-section {
    width: 100%;
        padding: 60px 40px;
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.timeline {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    right: 16px;
    top: 16px;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-elevated);
    line-height: 1;
}

.timeline-content {
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.timeline-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.timeline-visual {
    margin-top: 16px;
}

/* Code Block */
.code-block {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
}

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

.dot.red { background: #F6465D; }
.dot.yellow { background: #F0B90B; }
.dot.green { background: #0ECB81; }

.code-block pre {
    padding: 14px;
    margin: 0;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.8;
}

.code-key { color: var(--text-secondary); }
.code-string { color: var(--gold); }
.code-bool { color: var(--red); }
.code-success { color: var(--green); }

/* Strategy Blocks */
.strategy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.block {
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    border-radius: 6px;
    font-weight: 500;
}

.block-condition {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    color: var(--gold);
}

.block-and {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.block-then {
    width: 20px;
    height: 2px;
    background: var(--gold);
    padding: 0;
}

.block-action {
    background: rgba(14, 203, 129, 0.1);
    border: 1px solid rgba(14, 203, 129, 0.3);
    color: var(--green);
}

/* Performance Chart */
.performance-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 100px;
    padding: 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.4) 0%, rgba(240, 185, 11, 0.1) 100%);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 8px;
    transition: all 0.3s;
}

.chart-bar span {
    font-size: 10px;
    color: var(--text-muted);
}

.chart-bar.highlight {
    background: linear-gradient(180deg, var(--gold) 0%, rgba(240, 185, 11, 0.3) 100%);
    border-color: var(--gold);
    box-shadow: var(--glow);
}

.chart-bar.highlight span {
    color: var(--bg);
    font-weight: 600;
}

.chart-label {
    margin-top: 16px;
    text-align: center;
}

.chart-label .positive {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
}

.chart-label .backtest-label {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
}

/* ===== Security Section ===== */
.security-section {
    width: 100%;
        padding: 60px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}

.security-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: rgba(14, 203, 129, 0.1);
    border: 1px solid rgba(14, 203, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.security-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

.security-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Pricing Section ===== */
.pricing-section {
    width: 100%;
    padding: 80px 40px 60px;
    position: relative;
    z-index: 1;
    background: var(--bg-elevated);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(240, 185, 11, 0.05) 0%, var(--bg) 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg);
}

.price-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-tier {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 10px 0 6px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.check {
    width: 18px;
    height: 18px;
    background: rgba(14, 203, 129, 0.1);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: 2px solid var(--green);
    border-top: none;
    border-left: none;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-pricing:hover {
    border-color: var(--gold);
    background: rgba(240, 185, 11, 0.05);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--bg);
}

.btn-pricing.primary:hover {
    box-shadow: var(--glow);
}

/* ===== CTA Section ===== */
.cta-section {
    width: 100%;
        padding: 60px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.cta-visual {
    position: relative;
    width: 350px;
    height: 350px;
    flex-shrink: 0;
}

/* CTA Hologram Animation */
.hologram-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram {
    position: relative;
    width: 280px;
    height: 280px;
}

.holo-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.holo-ring.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(240, 185, 11, 0.3);
    border-top-color: var(--gold);
    border-right-color: var(--gold);
    animation: rotateRing 8s linear infinite;
}

.holo-ring.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(240, 185, 11, 0.2);
    border-bottom-color: var(--gold);
    border-left-color: var(--gold);
    animation: rotateRing 6s linear infinite reverse;
}

.holo-ring.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(240, 185, 11, 0.15);
    border-top-color: rgba(240, 185, 11, 0.6);
    animation: rotateRing 4s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.holo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.holo-core img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(240, 185, 11, 0.5));
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(240, 185, 11, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 35px rgba(240, 185, 11, 0.8)); }
}

.holo-data {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
}

.data-stream.stream-1 {
    top: 15%;
    right: -60px;
    animation: streamFloat 4s ease-in-out infinite;
}

.data-stream.stream-2 {
    bottom: 15%;
    left: -60px;
    animation: streamFloat 4s ease-in-out infinite 1s;
}

@keyframes streamFloat {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-8px); opacity: 1; }
}

.data-stream span {
    padding: 4px 10px;
    background: rgba(11, 14, 17, 0.8);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.data-positive {
    color: var(--green) !important;
    border-color: rgba(14, 203, 129, 0.3) !important;
}

.data-negative {
    color: var(--red) !important;
    border-color: rgba(246, 70, 93, 0.3) !important;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scanMove 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes scanMove {
    0%, 100% { top: 10%; opacity: 0; }
    10% { opacity: 0.6; }
    50% { top: 90%; opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 10%; opacity: 0; }
}

.cta-content {
    max-width: 450px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.cta-features span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 8px;
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-intense);
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(240, 185, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 185, 11, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ===== Footer ===== */
.footer {
    width: 100%;
    padding: 80px 80px 50px;
    background: var(--bg);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-brand .logo-img {
    width: 48px;
    height: 48px;
}

.footer-brand .logo-name {
    font-size: 26px;
}

.footer-brand .logo-ai {
    font-size: 18px;
}

.footer-brand > p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--text);
}

.risk-warning {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.risk-warning p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
}

/* ===== Waitlist Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-content,
.modal-success {
    text-align: center;
}

.modal-success {
    display: none;
}

.modal-success.active {
    display: block;
}

.modal-content.hidden {
    display: none;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 203, 129, 0.1);
    border: 2px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPop 0.4s ease;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.modal-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.waitlist-form {
    position: relative;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
}

.form-group input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.form-group input[type="email"]::placeholder {
    color: var(--text-muted);
}

.btn-submit {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 10px;
    color: var(--bg);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    min-width: 110px;
}

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

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}

.btn-done {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 10px;
    color: var(--bg);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.form-error {
    color: var(--red);
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

.form-error.active {
    display: block;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===== Responsive ===== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        width: 420px;
        height: 460px;
    }

    .hero-inner {
        gap: 40px;
    }

    .cta-visual {
        width: 300px;
        height: 300px;
    }

    .section-desc {
        max-width: 90%;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        max-width: 350px;
        height: 380px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .pricing-grid,
    .security-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .timeline {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .timeline-item::before {
        font-size: 24px;
    }

    .exchange-showcase {
        flex-direction: column;
        gap: 24px;
    }

    .cta-section {
        flex-direction: column;
        gap: 40px;
    }

    .cta-visual {
        width: 280px;
        height: 280px;
    }

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

    .cta-features {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 48px;
        justify-content: center;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .hero-title {
        font-size: clamp(32px, 6vw, 48px);
    }
}

/* Mobile */
@media (max-width: 600px) {
    body {
        cursor: auto;
    }

    .cursor-glow,
    .cursor-trail {
        display: none;
    }

    .swiper-pagination {
        display: none;
    }

    .swiper-slide {
        padding: 20px 16px 30px;
        justify-content: flex-start !important;
        align-items: center !important;
        overflow: visible;
        height: auto;
        min-height: auto;
    }

    .hero,
    .features,
    .how-section,
    .security-section,
    .pricing-section,
    .cta-section,
    .trusted,
    .footer {
        padding: 10px 16px 20px;
        padding-top: 10px;
        min-height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav {
        padding: 12px 16px;
    }

    .nav-inner {
        gap: 10px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-name {
        font-size: 20px;
    }

    .logo-ai {
        font-size: 14px;
    }

    .btn-nav {
        padding: 10px 16px;
        font-size: 12px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
        margin-bottom: 10px;
    }

    .hero-desc {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .hero-cta {
        width: 100%;
        margin-bottom: 16px;
    }

    .btn-main {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-visual {
        width: 100%;
        max-width: 280px;
        height: 300px;
        margin-top: 10px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-label-feature {
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 14px 12px;
    }

    .card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .card-title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .card-desc {
        font-size: 10px;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .card-metric {
        padding-top: 8px;
    }

    .metric-value {
        font-size: 14px;
    }

    .metric-label {
        font-size: 9px;
    }

    .ensemble-visual {
        margin-top: 14px;
    }

    .ensemble-center {
        font-size: 9px;
        padding: 10px 20px;
    }

    .line {
        width: 60px;
    }

    .line-1 { left: -50px; }
    .line-2 { right: -50px; }

    .section-header {
        margin-bottom: 16px;
    }

    .section-tag {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 26px);
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 12px;
        max-width: 100%;
        line-height: 1.5;
    }

    /* Trusted Section */
    .trusted-header {
        margin-bottom: 16px;
    }

    .trusted-header .section-title {
        font-size: clamp(18px, 4vw, 24px);
    }

    .exchange-showcase {
        gap: 12px;
    }

    .exchange-main {
        padding: 16px 14px;
    }

    .exchange-main-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .exchange-main-icon svg {
        width: 20px;
        height: 20px;
    }

    .exchange-main-info h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .exchange-main-info p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .exchange-main-info .exchange-status.active {
        font-size: 11px;
        padding: 6px 12px;
    }

    .exchange-main-features {
        margin-top: 12px;
        gap: 8px;
    }

    .exchange-main-features span {
        padding: 5px 10px;
        font-size: 10px;
    }

    .exchange-coming {
        padding: 14px 12px;
    }

    .exchange-coming h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .exchange-coming-list {
        gap: 8px;
    }

    .exchange-coming-item {
        padding: 10px 12px;
    }

    .exchange-coming-item .exchange-name {
        font-size: 12px;
    }

    .exchange-coming-item .exchange-status.coming {
        font-size: 10px;
        padding: 4px 8px;
    }

    /* Timeline */
    .timeline {
        max-width: 100%;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding: 14px 12px;
    }

    .timeline-item::before {
        font-size: 16px;
        right: 10px;
        top: 10px;
    }

    .timeline-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .timeline-icon svg {
        width: 16px;
        height: 16px;
    }

    .timeline-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .timeline-content p {
        font-size: 10px;
        line-height: 1.4;
    }

    .timeline-visual {
        margin-top: 10px;
    }

    .code-block pre {
        font-size: 9px;
        padding: 10px;
        line-height: 1.6;
    }

    .code-header {
        padding: 8px 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .strategy-blocks {
        gap: 4px;
    }

    .block {
        padding: 5px 8px;
        font-size: 8px;
    }

    .block-then {
        width: 14px;
    }

    .performance-chart {
        height: 60px;
        padding: 8px;
        gap: 4px;
    }

    .chart-bar span {
        font-size: 7px;
    }

    .chart-label {
        margin-top: 8px;
    }

    .chart-label .backtest-label {
        font-size: 10px;
    }

    /* Security */
    .security-grid {
        max-width: 100%;
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .security-card {
        padding: 14px 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .security-icon {
        width: 40px;
        height: 40px;
        margin: 0;
        flex-shrink: 0;
    }

    .security-icon svg {
        width: 18px;
        height: 18px;
    }

    .security-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .security-card p {
        font-size: 10px;
        line-height: 1.4;
    }

    /* Pricing */
    .pricing-section {
        padding-top: 10px;
    }

    .pricing-grid {
        max-width: 100%;
        gap: 12px;
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-card {
        padding: 16px 12px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .featured-badge {
        font-size: 9px;
        padding: 4px 10px;
        top: -8px;
    }

    .price-header {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .price-tier {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .amount {
        font-size: 22px;
    }

    .currency {
        font-size: 14px;
    }

    .price-period {
        font-size: 11px;
    }

    .price-features {
        margin-bottom: 16px;
    }

    .price-features li {
        font-size: 10px;
        padding: 5px 0;
        gap: 6px;
    }

    .check {
        width: 14px;
        height: 14px;
    }

    .check::after {
        width: 3px;
        height: 6px;
    }

    .btn-pricing {
        padding: 10px 8px;
        font-size: 11px;
    }

    /* CTA */
    .cta-section {
        gap: 20px;
    }

    .cta-visual {
        width: 140px;
        height: 140px;
        order: 1;
    }

    .hologram {
        width: 120px;
        height: 120px;
    }

    .holo-core {
        width: 50px;
        height: 50px;
    }

    .holo-core img {
        width: 35px;
        height: 35px;
    }

    .scan-line {
        width: 120px;
    }

    .data-stream {
        display: none;
    }

    .cta-content {
        order: 2;
    }

    .cta-title {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 10px;
    }

    .cta-desc {
        font-size: 11px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .cta-features {
        gap: 10px;
        margin-bottom: 18px;
    }

    .cta-features span {
        font-size: 10px;
    }

    .cta-features span::before {
        width: 5px;
        height: 5px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .btn-cta svg {
        width: 16px;
        height: 16px;
    }

    /* Footer */

    .footer-content {
        gap: 30px;
        margin-bottom: 24px;
    }

    .footer-brand .logo-img {
        width: 32px;
        height: 32px;
    }

    .footer-brand .logo-name {
        font-size: 18px;
    }

    .footer-brand .logo-ai {
        font-size: 12px;
    }

    .footer-brand > p {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links a svg {
        width: 16px;
        height: 16px;
    }

    .footer-links {
        gap: 24px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: 12px;
        padding: 5px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 11px;
        padding-top: 20px;
    }

    .footer-legal {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 11px;
    }

    .risk-warning {
        margin-top: 16px;
        padding-top: 16px;
    }

    .risk-warning p {
        font-size: 10px;
        line-height: 1.5;
    }

    /* Modal */
    .modal {
        padding: 28px 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-desc {
        font-size: 13px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input[type="email"] {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-submit {
        width: 100%;
        padding: 14px;
    }

    /* Scroll indicator - hide on mobile */
    .scroll-indicator {
        display: none;
    }
}

/* Extra small phones */
@media (max-width: 380px) {
    .swiper-slide {
        padding: 16px 12px 20px;
    }

    .hero,
    .features,
    .how-section,
    .security-section,
    .pricing-section,
    .cta-section,
    .trusted,
    .footer {
        padding: 8px 12px 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-badge {
        font-size: 9px;
    }

    .hero-desc {
        font-size: 11px;
    }

    .hero-visual {
        max-width: 240px;
        height: 260px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-label-feature {
        font-size: 10px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-desc {
        font-size: 11px;
    }

    .features-grid {
        gap: 8px;
    }

    .feature-card {
        padding: 12px 10px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-desc {
        font-size: 9px;
    }

    .pricing-grid {
        gap: 8px;
    }

    .pricing-card {
        padding: 12px 8px;
    }

    .amount {
        font-size: 18px;
    }

    .price-features li {
        font-size: 9px;
    }

    .btn-pricing {
        padding: 8px 6px;
        font-size: 10px;
    }

    .cta-visual {
        width: 120px;
        height: 120px;
    }

    .hologram {
        width: 100px;
        height: 100px;
    }

    .cta-title {
        font-size: 18px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-col h4 {
        font-size: 12px;
    }

    .footer-col a {
        font-size: 11px;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .swiper-slide {
        justify-content: flex-start !important;
        padding-top: 80px;
    }

    .hero-inner {
        flex-direction: row;
    }

    .hero-content {
        text-align: left;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .scroll-indicator {
        display: none;
    }
}
