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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* ===== BILLION-DOLLAR SAAS DESIGN SYSTEM ===== */

/* CSS Variables - Enhanced Premium Theme */
:root {
    /* Core Colors */
    --bg-primary: #05070a;
    --bg-secondary: #0a0f17;
    --bg-tertiary: #111927;
    --bg-elevated: #1a2235;
    
    /* Accent Colors - Premium Indigo/Violet */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #a78bfa;
    --accent-cyan: #22d3ee;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    --accent-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    
    /* Status Colors */
    --success: #10b981;
    --success-muted: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-muted: rgba(245, 158, 11, 0.15);
    --error: #ef4444;
    --error-muted: rgba(239, 68, 68, 0.15);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Borders & Effects */
    --border-subtle: rgba(99, 102, 241, 0.08);
    --border-default: rgba(99, 102, 241, 0.15);
    --border-strong: rgba(99, 102, 241, 0.3);
    
    /* Glow Effects */
    --glow-sm: 0 0 20px rgba(99, 102, 241, 0.15);
    --glow-md: 0 0 40px rgba(99, 102, 241, 0.2);
    --glow-lg: 0 0 60px rgba(99, 102, 241, 0.25);
    --glow-xl: 0 0 80px rgba(99, 102, 241, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --container-width: 1400px;
    --container-narrow: 900px;
    --section-padding: 140px;
    --section-padding-mobile: 80px;
    
    /* Transitions */
    --transition-instant: 0.1s ease;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Z-Index Scale */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* Dark Mode Default - No Light Mode */
@media (prefers-color-scheme: light) {
    :root {
        /* Force dark theme - never switch to light */
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* Gradient Text Utility */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 32px;
}

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

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

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-left {
    margin: 0;
    max-width: 560px;
}

/* ===== PREMIUM BACKGROUND EFFECTS ===== */

/* Animated Grid Pattern */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float-orb-1 25s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    top: 40%;
    right: -150px;
    animation: float-orb-2 30s ease-in-out infinite;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: float-orb-3 20s ease-in-out infinite;
    animation-delay: -10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, transparent 70%);
    top: 60%;
    left: 10%;
    animation: float-orb-4 22s ease-in-out infinite;
    animation-delay: -15s;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 50px) scale(1.05); }
    66% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 30px) scale(1.15); }
    66% { transform: translate(-20px, -40px) scale(0.85); }
}

@keyframes float-orb-4 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -30px); }
    66% { transform: translate(40px, 20px); }
}

/* ===== GLASSMORPHISM CARDS ===== */
.glass-card {
    background: rgba(17, 25, 39, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--border-default);
    box-shadow: var(--glow-md);
    transform: translateY(-4px);
}

/* Premium Card with Gradient Border */
.premium-card {
    background: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)) padding-box,
                var(--accent-gradient) border-box;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-lg);
}

/* ===== ANIMATIONS ===== */

/* Fade Up / In — visible by default (mobile + no-JS safe) */
.fade-up,
.fade-in,
.scale-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (min-width: 769px) {
    html.anim-ready .fade-up:not(.visible) {
        opacity: 0;
        transform: translateY(28px);
    }
    html.anim-ready .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
    html.anim-ready .fade-in:not(.visible) {
        opacity: 0;
    }
    html.anim-ready .fade-in.visible {
        opacity: 1;
    }
    html.anim-ready .scale-in:not(.visible) {
        opacity: 0;
        transform: scale(0.96);
    }
    html.anim-ready .scale-in.visible {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger Children */
.stagger-children > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 50ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 150ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 250ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 350ms; opacity: 1; transform: translateY(0); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* ===== FOCUS STATES ===== */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --container-width: 100%;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-up, .fade-in, .scale-in {
        opacity: 1;
        transform: none;
    }
}
/* ===== GLOBAL STYLES - BILLION DOLLAR SAAS ===== */

/* Base Styles */
body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Section Spacing */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

/* Section Title */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

/* Section Subtitle */
.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* Gradient Text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade Up — visible by default so first paint isn't blank while JS loads */
.fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
    html.anim-ready .fade-up:not(.visible) {
        opacity: 0;
        transform: translateY(28px);
    }

    html.anim-ready .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation */
.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 75ms; }
.stagger-3 { transition-delay: 150ms; }
.stagger-4 { transition-delay: 225ms; }
.stagger-5 { transition-delay: 300ms; }
.stagger-6 { transition-delay: 375ms; }
.stagger-7 { transition-delay: 450ms; }
.stagger-8 { transition-delay: 525ms; }

/* Grid Pattern Background */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Radial Fade */
.radial-fade {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-primary) 70%);
    pointer-events: none;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(17, 25, 39, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

/* Glow Border Card */
.glow-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.glow-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), transparent, rgba(139, 92, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.glow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-up {
        opacity: 1;
        transform: none;
    }
}
/* ===== COMPONENTS - BILLION DOLLAR SAAS ===== */

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    padding: 14px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.nav-logo::after {
    display: none !important;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.2s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

/* Mobile Nav Toggle */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        padding: 88px 24px 48px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu a {
        font-size: 1.35rem;
    }

    .nav-logo {
        position: relative;
        z-index: 1002;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Primary Button */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    color: var(--text-primary);
}

.btn-ghost:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Small Button */
.btn-sm {
    padding: 10px 18px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
}

/* Large Button */
.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
    border-radius: var(--radius-lg);
}

/* Button Variants */
.btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

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

.trust-item svg {
    color: var(--accent-primary);
}

/* ===== BENTO GRID CARDS ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.bento-card {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.7) 0%, rgba(17, 25, 39, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-6px);
}

.bento-card:hover::after {
    opacity: 1;
}

/* Bento Icon */
.bento-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.bento-icon svg {
    color: var(--accent-primary);
    width: 26px;
    height: 26px;
}

.bento-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.bento-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Bento Visual */
.bento-visual {
    margin-top: 24px;
    height: 100px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.08);
}

/* Orderbook Animation */
.orderbook-animation {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
}

.orderbook-animation .order-row {
    height: 16px;
    border-radius: 4px;
    animation: orderbook-fade 2s ease-in-out infinite;
}

.orderbook-animation .order-row.buy {
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3));
    animation-delay: 0s;
}

.orderbook-animation .order-row.sell {
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.3));
    animation-delay: 0.5s;
}

@keyframes orderbook-fade {
    0%, 100% { opacity: 0.3; transform: translateX(-10px); }
    50% { opacity: 1; transform: translateX(0); }
}

/* Wallet Animation */
.wallet-animation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.wallet-animation .address {
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-animation .address::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Blockchain Animation */
.blockchain-animation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.blockchain-animation .block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(99, 102, 241, 0.1);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    animation: block-slide 3s ease-in-out infinite;
}

.blockchain-animation .block-height {
    color: var(--accent-primary);
    font-weight: 600;
}

.blockchain-animation .block-status {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blockchain-animation .block-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes block-slide {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

/* Pulse Animation */
.pulse-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pulse-animation .pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    animation: pulse-ring 2s ease-out infinite;
}

.pulse-animation .pulse-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.pulse-animation .pulse-ring:nth-child(3) {
    animation-delay: 1s;
}

.pulse-animation .pulse-dot {
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

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

/* ===== SERVICE CARDS ===== */
.service-card {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.6) 0%, rgba(17, 25, 39, 0.5) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-subtitle {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

.service-card p {
    color: var(--text-secondary);
    margin: 16px 0;
    line-height: 1.65;
    font-size: 0.9375rem;
}

.service-tech {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-tech::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
}

/* ===== TECH TAGS ===== */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

/* ===== STATS CARDS ===== */
.stat-card {
    text-align: center;
    padding: 36px 28px;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.6) 0%, rgba(17, 25, 39, 0.4) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 850;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
    letter-spacing: -0.03em;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: inline-block;
    margin-left: 2px;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 16px 0 8px;
    color: var(--text-primary);
}

.stat-description {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== CHAIN BADGES ===== */
.chain-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    margin: 0 8px;
    transition: all 0.2s ease;
}

.chain-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    text-align: center;
    margin-top: 64px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .trust-bar {
        gap: 20px;
    }
}
/* ===== HERO SECTION - BILLION DOLLAR SAAS ===== */

/* Hero Container */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

/* Background Effects */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Gradient Orbs - Enhanced */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s ease-in-out infinite;
    will-change: transform, opacity;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
    top: -250px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    top: 50%;
    right: -180px;
    animation-delay: -8s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.35) 0%, transparent 70%);
    bottom: -150px;
    left: 35%;
    animation-delay: -15s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 50%;
    animation-delay: -20s;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -40px) scale(1.08);
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }
    75% {
        transform: translate(-40px, -20px) scale(1.02);
    }
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, black 20%, transparent 70%);
}

/* Hero Container Layout */
.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero Content */
.hero-content {
    max-width: 640px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% { 
        opacity: 0.8; 
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.75rem, 6.5vw, 5rem);
    font-weight: 850;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 540px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Dashboard Visual */
.hero-visual {
    position: relative;
    perspective: none;
}

.hero-visual .shot-card--hero {
    max-width: 100%;
}

/* Dashboard Mockup - Premium 3D */
.dashboard-mockup {
    background: linear-gradient(180deg, rgba(26, 34, 54, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: perspective(1500px) rotateY(-6deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.dashboard-mockup:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
}

/* Mockup Header */
.mockup-header {
    padding: 18px 24px;
    background: rgba(10, 14, 23, 0.8);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
}

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

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    transition: background 0.2s ease;
}

.mockup-dots span:nth-child(1) {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.mockup-dots span:nth-child(3) {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.mockup-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

/* Mockup Content */
.mockup-content {
    padding: 28px;
    min-height: 340px;
    display: flex;
    gap: 20px;
}

/* Mockup Sidebar - Trading Pairs */
.mockup-sidebar {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(10, 14, 23, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(99, 102, 241, 0.08);
}

.mockup-pair {
    padding: 8px 10px;
    border-radius: var(--radius-xs);
    font-size: 0.6875rem;
    font-family: var(--font-mono);
    transition: all 0.3s ease;
}

.mockup-pair.active {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.mockup-pair .pair-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.mockup-pair .pair-price {
    color: var(--success);
    font-size: 0.625rem;
}

.mockup-pair .pair-price.down {
    color: var(--error);
}

/* Mockup Chart Area */
.mockup-chart {
    flex: 1;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(99, 102, 241, 0.02) 50%,
        transparent 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.08);
    display: flex;
    flex-direction: column;
}

/* Chart Header */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    z-index: 2;
}

.chart-symbol {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-price {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-xs);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.chart-price::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-live 1.5s ease-in-out infinite;
}

.chart-price {
    color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.chart-price.down {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.chart-price.down::before {
    background: var(--error);
    animation: none;
}

/* Chart Area */
.chart-area {
    flex: 1;
    position: relative;
    padding: 12px;
}

/* Animated Chart Line */
.chart-line {
    position: absolute;
    bottom: 35px;
    left: 12px;
    right: 12px;
    height: 50px;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

.chart-line path {
    fill: none;
    stroke: var(--accent-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-line .area {
    fill: url(#chartGradient);
    opacity: 0.3;
}

/* Chart Grid Lines */
.chart-grid {
    position: absolute;
    inset: 12px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.chart-grid-line {
    height: 1px;
    background: rgba(99, 102, 241, 0.06);
}

/* Chart Volume Bars */
.chart-volume {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    padding: 0 12px 6px;
}

.volume-bar {
    flex: 1;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 2px 2px 0 0;
    animation: volume-bar 1.5s ease-in-out infinite;
}

.volume-bar:nth-child(2) { animation-delay: 0.1s; }
.volume-bar:nth-child(3) { animation-delay: 0.2s; }
.volume-bar:nth-child(4) { animation-delay: 0.3s; }
.volume-bar:nth-child(5) { animation-delay: 0.4s; }
.volume-bar:nth-child(6) { animation-delay: 0.5s; }
.volume-bar:nth-child(7) { animation-delay: 0.6s; }
.volume-bar:nth-child(8) { animation-delay: 0.7s; }
.volume-bar:nth-child(9) { animation-delay: 0.8s; }
.volume-bar:nth-child(10) { animation-delay: 0.9s; }

@keyframes volume-bar {
    0%, 100% { height: 20%; opacity: 0.5; }
    50% { height: 80%; opacity: 1; }
}

/* Chart Bottom Line Glow */
.mockup-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary));
    animation: pulse-line 3s ease-in-out infinite;
    border-radius: var(--radius-full);
}

@keyframes pulse-line {
    0%, 100% { 
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }
    50% { 
        opacity: 1;
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
    }
}

/* Chart bars animation */
.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 100px;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        transparent 8px,
        rgba(99, 102, 241, 0.15) 8px,
        rgba(99, 102, 241, 0.15) 9px
    );
    border-radius: var(--radius-sm);
    animation: bars-float 4s ease-in-out infinite;
}

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

/* Mockup Orderbook */
.mockup-orderbook {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: rgba(10, 14, 23, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid rgba(99, 102, 241, 0.08);
}

.orderbook-row {
    height: 28px;
    border-radius: var(--radius-xs);
    position: relative;
    overflow: hidden;
    animation: slideIn 1.5s ease-out forwards;
    opacity: 0;
}

.orderbook-row.buy {
    background: linear-gradient(90deg, transparent 0%, rgba(16, 185, 129, 0.25) 100%);
    border-left: 3px solid var(--success);
}

.orderbook-row.sell {
    background: linear-gradient(90deg, transparent 0%, rgba(239, 68, 68, 0.25) 100%);
    border-left: 3px solid var(--error);
}

.orderbook-row:nth-child(1) { animation-delay: 0.1s; }
.orderbook-row:nth-child(2) { animation-delay: 0.2s; }
.orderbook-row:nth-child(3) { animation-delay: 0.3s; }
.orderbook-row:nth-child(4) { animation-delay: 0.4s; }
.orderbook-row:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 40px;
    justify-content: flex-start;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.trust-item:hover {
    color: var(--text-primary);
}

.trust-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-bar {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-bar {
        gap: 20px;
    }
    
    .mockup-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .mockup-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .mockup-pair {
        flex: 1;
        min-width: 45%;
    }
    
    .mockup-orderbook {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .orderbook-row {
        flex: 1;
        min-width: 80px;
    }
}
/* ===== SECTIONS - BILLION DOLLAR SAAS ===== */

/* ===== PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.split-left h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

.problem-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.problem-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    font-weight: 700;
    color: #ef4444;
    font-size: 1rem;
}

.problem-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1.125rem;
    font-weight: 600;
}

.problem-list p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Solution Card */
.solution-card {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.8) 0%, rgba(17, 25, 39, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-2xl);
    padding: 44px;
    position: sticky;
    top: 120px;
    transition: all 0.4s ease;
}

.solution-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.1);
}

.solution-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 32px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.check-item::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-xs);
    color: var(--success);
    font-weight: 700;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.solution-cta {
    padding-top: 32px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

/* ===== ARCHITECTURE SECTION ===== */
.architecture-section {
    background: var(--bg-primary);
    position: relative;
}

.architecture-diagram {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.5) 0%, rgba(17, 25, 39, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-2xl);
    padding: 56px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.architecture-diagram::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.arch-layer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.arch-layer:last-child {
    margin-bottom: 0;
}

.arch-node {
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 150px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.arch-node.gateway {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(99, 102, 241, 0.4);
}

.arch-node.service {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.9) 0%, rgba(17, 25, 39, 0.8) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.arch-node.kafka {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(167, 139, 250, 0.15) 100%);
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.arch-node:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.arch-node strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.arch-node span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* ===== TECH STACK SECTION ===== */
.tech-stack {
    background: var(--bg-secondary);
    position: relative;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

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

.tech-category {
    padding: 32px;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.5) 0%, rgba(17, 25, 39, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.tech-category:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.tech-category h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category h3::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-gradient);
    border-radius: 50%;
}

/* ===== SECURITY SECTION ===== */
.security-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.security-visual {
    position: relative;
}

/* Security Shield Visual */
.security-shield {
    display: none;
}

.shield-layer {
    position: absolute;
}

/* Security Features Grid - New Design */
.security-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.security-feature-card {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.7) 0%, rgba(17, 25, 39, 0.5) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.security-feature-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.15);
}

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

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.feature-icon-lg {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.security-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
}

.security-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    position: relative;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

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

@media (max-width: 640px) {
    .security-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== WHITE-LABEL SECTION ===== */
.white-label-section {
    background: var(--bg-secondary);
    position: relative;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.customization-item {
    padding: 32px;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.5) 0%, rgba(17, 25, 39, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.customization-item:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.customization-item svg {
    margin: 0 auto 20px;
    color: var(--accent-primary);
    width: 48px;
    height: 48px;
}

.customization-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.customization-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ===== RPC SECTION ===== */
.rpc-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.rpc-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.rpc-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.rpc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.rpc-feature {
    padding: 32px;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.5) 0%, rgba(17, 25, 39, 0.3) 100%);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.rpc-feature:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.rpc-icon {
    font-size: 2.75rem;
    margin-bottom: 18px;
    display: block;
}

.rpc-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rpc-feature p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Chains Marquee */
.chains-marquee {
    margin-bottom: 64px;
}

.chains-marquee h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: var(--accent-primary);
}

.marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-primary), transparent);
}

.marquee-content {
    display: flex;
    gap: 16px;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-secondary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    background: var(--bg-primary);
    position: relative;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.6) 0%, rgba(17, 25, 39, 0.4) 100%);
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.comparison-table th {
    background: rgba(10, 14, 23, 0.8);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th.highlight {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: var(--accent-primary);
}

.comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(99, 102, 241, 0.03);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    filter: blur(5px);
    opacity: 0.4;
    pointer-events: none;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.7) 0%, rgba(17, 25, 39, 0.5) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-2xl);
    padding: 44px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.3);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.9375rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-feature {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-feature::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* Pricing Overlay */
.pricing-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 40px;
}

.pricing-coming-soon {
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.95) 0%, rgba(10, 14, 23, 0.98) 100%);
    backdrop-filter: blur(24px);
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-2xl);
    padding: 56px;
    text-align: center;
    max-width: 600px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-coming-soon h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.pricing-coming-soon p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    font-size: 1.0625rem;
}

.waitlist-form {
    display: flex;
    gap: 14px;
    max-width: 440px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-note {
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.waitlist-note a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.waitlist-note a:hover {
    color: var(--accent-secondary);
}

/* Waitlist Success Message */
.waitlist-success {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    margin-top: 24px;
}

.waitlist-success .success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.waitlist-success h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.waitlist-success p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--accent-gradient);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 850;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn-primary {
    background: white;
    color: var(--accent-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-section .btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.cta-section .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-tagline a {
    color: var(--accent-primary);
    font-weight: 600;
}

.footer-tagline a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .pricing-overlay {
        position: relative;
        background: var(--bg-secondary);
    }
    
    .pricing-grid {
        display: none;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Withdrawal security ===== */
.withdrawal-security .wl-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 920px;
    margin: 28px auto;
}

.wl-step {
    background: rgba(17, 25, 39, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    padding: 22px 18px;
    min-width: 0;
}

.wl-step-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #22d3ee;
    margin-bottom: 10px;
}

.wl-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-primary);
}

.wl-step p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .withdrawal-security .wl-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .withdrawal-security .wl-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== Hero screenshot ===== */
.shot-card {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.shot-card--hero {
    max-width: 100%;
    border-radius: 18px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(34, 211, 238, 0.06);
}

.shot-card img {
    display: block;
    width: 100%;
    height: auto;
}

.live-demo-cta {
    margin-top: 40px;
    text-align: center;
    padding: 28px 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(56, 189, 248, 0.04));
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.live-demo-cta p {
    margin: 0 0 16px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}
/* ===== RESPONSIVE STYLES - BILLION DOLLAR SAAS ===== */

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-bar {
        justify-content: center;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-card {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .architecture-diagram {
        padding: 40px 32px;
    }
    
    .arch-layer {
        gap: 16px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        font-size: 1.5rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-bar {
        gap: 16px 24px;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8125rem;
    }
    
    .dashboard-mockup {
        transform: none !important;
        border-radius: var(--radius-xl);
    }
    
    .mockup-content {
        flex-direction: column;
        padding: 20px;
    }
    
    .mockup-orderbook {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .orderbook-row {
        flex: 1;
        min-width: 60px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    /* Architecture */
    .architecture-diagram {
        padding: 28px 20px;
        border-radius: var(--radius-xl);
        overflow-x: auto;
    }
    
    .arch-node {
        min-width: 120px;
        padding: 14px 18px;
    }
    
    .arch-node strong {
        font-size: 0.8125rem;
    }
    
    .arch-node span {
        font-size: 0.6875rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-suffix {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.9375rem;
    }
    
    /* Comparison */
    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .comparison-table {
        font-size: 0.8125rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
    }
    
    /* Pricing */
    .pricing-grid {
        display: none;
    }
    
    .pricing-overlay {
        position: relative;
        background: transparent;
        padding: 0;
    }
    
    .pricing-coming-soon {
        padding: 36px 24px;
        margin: 0 16px;
        border-radius: var(--radius-xl);
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 12px;
    }
    
    /* CTA */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-badge {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .bento-grid {
        gap: 16px;
    }
    
    .tech-tags {
        gap: 8px;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .chain-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
        margin: 0 4px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===== LARGE SCREENS ===== */
@media (min-width: 1440px) {
    .container {
        max-width: 1480px;
    }
    
    .hero-container {
        gap: 100px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .nav,
    .hero-bg,
    .cta-section,
    .footer-social,
    .btn,
    .gradient-orb,
    .grid-pattern {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .glass-card,
    .bento-card,
    .service-card {
        border: 1px solid #ddd;
        background: white !important;
        box-shadow: none !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb,
    .marquee-content {
        animation: none !important;
    }
}
/* Mobile / load performance */

@media (max-width: 768px) {
    .home-orb,
    .gradient-orb {
        animation: none !important;
        filter: blur(48px) !important;
        opacity: 0.45;
    }

    .home-hero-logo {
        animation: none !important;
        filter: drop-shadow(0 16px 32px rgba(0, 100, 200, 0.35)) !important;
    }

    .home-hero-visual::before {
        filter: none !important;
    }

    .nav.scrolled {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-orb,
    .gradient-orb,
    .home-hero-logo {
        animation: none !important;
    }
}

.nav-logo-img {
    height: 52px;
    width: auto;
    max-width: 160px;
}
