:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --accent-blue: #0ea5e9;
    --accent-blue-hover: #0284c7;
    --accent-purple: #8b5cf6;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.04), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.04), transparent 25%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo i {
    color: var(--accent-blue);
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-auth {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-login {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.btn-login:hover {
    color: var(--text-primary);
}

.btn-signup {
    padding: 0.6rem 1.2rem;
    background: var(--text-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-signup:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    min-height: 11rem;
}

.hero-title .text-highlight {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.23);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Terminal */
.hero-visual {
    max-width: 800px;
    margin: 0 auto 5rem;
    perspective: 1000px;
}

.terminal-window {
    background: #0f172a;
    border-radius: 12px;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #1e293b;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
}

.terminal-window:hover {
    transform: rotateX(0deg);
}

.terminal-header {
    background: #1e293b;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #334155;
}

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

.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.terminal-header .title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: monospace;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.9rem;
    color: #e2e8f0;
    min-height: 200px;
    line-height: 1.6;
}

.timestamp { color: #64748b; }

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Capabilities */
.capabilities {
    padding: 8rem 0;
    background: white;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.glass-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 4px 6px -1px rgba(0, 0, 0, 0.05), 
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.03), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 30px 40px -10px rgba(14, 165, 233, 0.1), 
        0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border-color: #bae6fd;
}

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

.glass-card i {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    background: #f0f9ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.glass-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 8rem 0;
    background: var(--bg-color);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    background: white;
    color: var(--accent-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--accent-blue);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.step p {
    font-weight: 600;
    color: var(--text-primary);
}

.step-arrow {
    width: 100px;
    height: 2px;
    background: #cbd5e1;
    position: relative;
    top: -20px;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border: 5px solid transparent;
    border-left-color: #cbd5e1;
}

/* Pricing */
.pricing {
    padding: 8rem 0;
    background: white;
}

.pricing-slider-container {
    max-width: 400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-slider {
    width: 100%;
    margin-bottom: 1rem;
    accent-color: var(--accent-blue);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1);
    position: relative;
    z-index: 10;
}

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

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1.5rem 0 2rem;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pricing-card i {
    color: var(--accent-blue);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.pricing-card.featured .btn-primary {
    display: block;
    text-align: center;
}

/* Live Dashboard Integration */
.dashboard-section {
    padding: 8rem 0;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.dashboard-section .section-title {
    color: white;
}

.dashboard-section .section-subtitle {
    color: #94a3b8;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
    z-index: 2;
    position: relative;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-wide {
        grid-column: span 1;
    }
}

.bento-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 25px -5px rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
}

.bento-wide {
    grid-column: span 2;
}

.bento-card h4 {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bento-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.bento-trend {
    font-size: 0.95rem;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

/* Animated CSS Charts */
.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    margin-top: auto;
    padding-top: 1rem;
}

.bar {
    flex: 1;
    background: #0ea5e9;
    border-radius: 4px 4px 0 0;
    animation: barPulse 2.5s infinite ease-in-out alternate;
    min-height: 15%;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

.bar:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.bar:nth-child(2) { animation-delay: 0.4s; height: 70%; background: #38bdf8; }
.bar:nth-child(3) { animation-delay: 0.2s; height: 50%; }
.bar:nth-child(4) { animation-delay: 0.6s; height: 90%; background: #8b5cf6; }
.bar:nth-child(5) { animation-delay: 0.3s; height: 60%; }
.bar:nth-child(6) { animation-delay: 0.8s; height: 80%; background: #0ea5e9; }
.bar:nth-child(7) { animation-delay: 0.5s; height: 35%; }

@keyframes barPulse {
    0% { transform: scaleY(0.85); transform-origin: bottom; opacity: 0.8; }
    100% { transform: scaleY(1.15); transform-origin: bottom; opacity: 1; }
}

/* Latency Wave */
.wave-container {
    height: 100px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wave-line {
    width: 4px;
    background: #8b5cf6;
    border-radius: 4px;
    animation: waveAnim 1s infinite ease-in-out alternate;
}

.wave-line:nth-child(2n) { animation-delay: 0.2s; background: #a78bfa; }
.wave-line:nth-child(3n) { animation-delay: 0.4s; background: #c4b5fd; }
.wave-line:nth-child(4n) { animation-delay: 0.6s; }

@keyframes waveAnim {
    0% { height: 20px; }
    100% { height: 80px; }
}

/* Gauges */
.gauge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

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

.gauge-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 8px solid #f1f5f9;
    border-top-color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gauge-card p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Testimonials */
.trust-zone {
    padding: 8rem 0;
    background: white;
}

.trust-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.testimonial-card.featured {
    border: 1px solid #bae6fd;
    background: #f0f9ff;
}

.quote-icon {
    font-size: 1.5rem;
    color: #bae6fd;
    margin-bottom: 1.5rem;
}

.testimonial-card.featured .quote-icon {
    color: var(--accent-blue);
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

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

/* Brand Logos */
.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s;
}

.brand-logos:hover {
    opacity: 1;
    filter: grayscale(0);
}

.brand-logos i {
    font-size: 2.5rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 4rem 0 2rem;
    color: #cbd5e1;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-links, .nav-auth { display: none; }
    .menu-toggle { display: block; cursor: pointer; }
    .hero-title { font-size: 3rem; }
    .feature-grid, .pricing-grid, .testimonials, .gauge-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .steps-container { flex-direction: column; }
    .step-arrow { width: 2px; height: 40px; background: #cbd5e1; top: 0; margin: 1rem 0; }
    .step-arrow::after { right: -4px; bottom: 0; top: auto; border-left-color: transparent; border-top-color: #cbd5e1; }
    .dashboard-hero { flex-direction: column; }
    .brand-logos { flex-wrap: wrap; gap: 2rem; }
    .hero-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* Extra grid and animation details */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.code-showcase .terminal-window {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
    border: 1px solid #334155;
}

/* Siphoning Data Animation */
.data-siphon-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.siphon-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8, 0 0 20px #8b5cf6;
    opacity: 0;
}

.siphon-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.siphon-line {
    fill: none;
    stroke: url(#siphonGradient);
    stroke-width: 2;
    stroke-dasharray: 10, 20;
    opacity: 0.4;
}

@keyframes siphonUp {
    0% { transform: translateY(150px) scale(0.5); opacity: 0; }
    20% { opacity: 1; transform: translateY(100px) scale(1.5); }
    100% { transform: translateY(-50px) scale(0); opacity: 0; }
}

.n1 { left: 40%; bottom: 20%; animation: siphonUp 1.5s infinite linear 0s; }
.n2 { left: 60%; bottom: 25%; animation: siphonUp 1.2s infinite linear 0.3s; }
.n3 { left: 50%; bottom: 15%; animation: siphonUp 2s infinite linear 0.6s; }
.n4 { left: 30%; bottom: 40%; animation: siphonUp 1.4s infinite linear 0.2s; }
.n5 { left: 70%; bottom: 35%; animation: siphonUp 1.7s infinite linear 0.8s; }
.n6 { left: 45%; bottom: 30%; animation: siphonUp 1.6s infinite linear 0.5s; }

.l1 { animation: lineFlow 1s infinite linear; }
.l2 { animation: lineFlow 1.2s infinite linear reverse; }
.l3 { animation: lineFlow 1.5s infinite linear; }
.l4 { animation: lineFlow 1.3s infinite linear; }
.l5 { animation: lineFlow 1.1s infinite linear reverse; }

@keyframes lineFlow {
    to { stroke-dashoffset: -30; }
}

/* Global Animations Ext */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }

.float-anim {
    animation: floatingCustom 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

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

/* 1. Marquee Section */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #0f172a;
    padding: 2.5rem 0;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}
.marquee-container::before, .marquee-container::after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0f172a 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0f172a 0%, transparent 100%);
}
.marquee-content {
    display: inline-block;
    animation: marqueeScroll 35s linear infinite;
}
.marquee-content i {
    font-size: 2.5rem;
    color: #475569;
    margin: 0 4rem;
    transition: color 0.3s;
}
.marquee-content i:hover { color: var(--accent-blue); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. Comparison Table */
.vs-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: stretch;
}
.vs-column {
    padding: 2rem;
    border-radius: 12px;
}
.vs-traditional {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.vs-scrapix {
    background: linear-gradient(135deg, rgba(14,165,233,0.05), rgba(139,92,246,0.05));
    border: 1px solid rgba(14,165,233,0.2);
    position: relative;
}
.vs-badge {
    position: absolute;
    top: -12px; right: 2rem;
    background: var(--accent-blue);
    color: white; font-size: 0.75rem; font-weight: 700;
    padding: 0.3rem 1rem; border-radius: 20px;
}
.vs-list { list-style: none; padding: 0; }
.vs-list li { margin-bottom: 1.2rem; display: flex; align-items: flex-start; gap: 1rem; font-size: 0.95rem; }
.vs-traditional li i { color: #ef4444; margin-top: 3px; }
.vs-scrapix li i { color: #34d399; margin-top: 3px; }

/* 3. Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testi-card {
    background: white; border-radius: 16px; padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05); border: 1px solid var(--border-color);
    display: flex; flex-direction: column; justify-content: space-between;
}
.stars { color: #f59e0b; margin-bottom: 1rem; font-size: 0.9rem; }
.testi-quote { color: var(--text-primary); font-size: 1.1rem; line-height: 1.6; font-style: italic; margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 45px; height: 45px; border-radius: 50%; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent-blue); }

/* 4. FAQ Accordion */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white; border: 1px solid var(--border-color); border-radius: 12px;
    margin-bottom: 1rem; overflow: hidden;
}
.faq-item details summary {
    padding: 1.5rem 2rem; font-weight: 600; color: var(--text-primary);
    cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-blue); transition: transform 0.3s; }
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details p { padding: 0 2rem 1.5rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* 5. Final CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: 24px; padding: 6rem 4rem;
    text-align: center; color: white; margin: 4rem 0;
    position: relative; overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(139,92,246,0.3);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at center, rgba(14,165,233,0.15) 0%, transparent 60%); pointer-events: none;
}
.cta-banner h2 { font-size: 3.5rem; font-family: var(--font-heading); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ------------------------------------------- */
/* Advanced Animations & Hero Elements */
/* ------------------------------------------- */
.hero-bg-anim {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(14, 165, 233, 0.4);
    top: -100px;
    left: -100px;
}
.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.4);
    bottom: 50px;
    right: 10%;
    animation-delay: 2s;
}
.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: badgeFloat 6s ease-in-out infinite;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.badge-1 { top: 15%; right: 10%; animation-delay: 0s; }
.badge-2 { top: 45%; right: 2%; animation-delay: 1.5s; }
.badge-3 { bottom: 20%; right: 15%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--text-primary);
    animation: blink 1s step-end infinite;
    color: transparent;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Footer Animations */
.footer {
    position: relative;
    overflow: hidden;
}
.footer:hover .footer-col a {
    color: rgba(148, 163, 184, 0.6);
}
.footer .footer-col a:hover {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.5);
    transform: translateX(5px);
}
.footer .social-links a:hover {
    color: white !important;
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.footer-col a {
    position: relative;
    display: inline-block;
}

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

/* Latency Wave Chart */
.wave-container { display: flex; align-items: flex-end; gap: 4px; height: 100%; justify-content: center; }
.wave-line { width: 8px; background: #8b5cf6; border-radius: 4px; animation: bounceWave 1.2s ease-in-out infinite; }
.wave-line:nth-child(2) { animation-delay: 0.1s; }
.wave-line:nth-child(3) { animation-delay: 0.2s; }
.wave-line:nth-child(4) { animation-delay: 0.3s; }
.wave-line:nth-child(5) { animation-delay: 0.4s; }
.wave-line:nth-child(6) { animation-delay: 0.5s; background: #0ea5e9; }
.wave-line:nth-child(7) { animation-delay: 0.6s; background: #0ea5e9; }
.wave-line:nth-child(8) { animation-delay: 0.7s; background: #0ea5e9; }
.wave-line:nth-child(9) { animation-delay: 0.8s; background: #34d399; }
@keyframes bounceWave {
    0%, 100% { height: 20%; }
    50% { height: 100%; }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }

