/* ═══════════════════════════════════════════════════════════════════════════
   ProSpark — High-End 3D Futuristic Marketing Website
   style.css — Complete Design System
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. CSS Custom Properties ─────────────────────────────────────────────── */
:root {
    /* Colors — Dark Mode (default) */
    --color-bg: #080c14;
    --color-bg-2: #0d1422;
    --color-bg-3: #111827;
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-surface-2: rgba(255, 255, 255, 0.07);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-2: rgba(0, 245, 255, 0.2);

    --color-cyan: #00f5ff;
    --color-cyan-dim: rgba(0, 245, 255, 0.15);
    --color-blue: #3b82f6;
    --color-purple: #7c3aed;
    --color-magenta: #f0abfc;
    --color-white: #ffffff;
    --color-text: #e2e8f0;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00f5ff 0%, #3b82f6 50%, #7c3aed 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    --gradient-glow-cyan: radial-gradient(ellipse 500px 300px at center, rgba(0, 245, 255, 0.12) 0%, transparent 70%);
    --gradient-glow-purple: radial-gradient(ellipse 500px 300px at center, rgba(124, 58, 237, 0.12) 0%, transparent 70%);

    /* Typography */
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Sizing */
    --container: 1280px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 600ms;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --shadow-glow-cyan: 0 0 30px rgba(0, 245, 255, 0.3), 0 0 60px rgba(0, 245, 255, 0.1);
    --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.3), 0 0 60px rgba(124, 58, 237, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LIGHT MODE — [data-theme="light"] on <html>
   ═══════════════════════════════════════════════════════════════════════════ */
[data-theme="light"] {
    /* Backgrounds */
    --color-bg: #f0f4f8;
    --color-bg-2: #e8eef5;
    --color-bg-3: #dde6ef;

    /* Surfaces & Borders */
    --color-surface: rgba(255, 255, 255, 0.7);
    --color-surface-2: rgba(255, 255, 255, 0.9);
    --color-border: rgba(0, 0, 0, 0.1);
    --color-border-2: rgba(0, 150, 180, 0.35);

    /* Accent colors — slightly deeper for light bg */
    --color-cyan: #0099b8;
    --color-cyan-dim: rgba(0, 153, 184, 0.15);
    --color-blue: #2563eb;
    --color-purple: #6d28d9;
    --color-magenta: #a21caf;

    /* Text */
    --color-white: #0f1923;
    --color-text: #1e293b;
    --color-text-muted: #475569;
    --color-text-dim: #64748b;

    /* Gradients (same brand, just works on light bg) */
    --gradient-primary: linear-gradient(135deg, #0099b8 0%, #2563eb 50%, #6d28d9 100%);
    --gradient-card: linear-gradient(135deg, rgba(0, 153, 184, 0.07) 0%, rgba(109, 40, 217, 0.07) 100%);
    --gradient-glow-cyan: radial-gradient(ellipse 500px 300px at center, rgba(0, 153, 184, 0.1) 0%, transparent 70%);
    --gradient-glow-purple: radial-gradient(ellipse 500px 300px at center, rgba(109, 40, 217, 0.1) 0%, transparent 70%);

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.07);
    --shadow-glow-cyan: 0 0 30px rgba(0, 153, 184, 0.2), 0 0 60px rgba(0, 153, 184, 0.08);
    --shadow-glow-purple: 0 0 30px rgba(109, 40, 217, 0.2), 0 0 60px rgba(109, 40, 217, 0.08);
}

/* Smooth transition when switching modes */
[data-theme="light"] *,
[data-theme="light"] *::before,
[data-theme="light"] *::after {
    transition-duration: 0.3s !important;
    transition-property: background-color, border-color, color, box-shadow, opacity, filter !important;
    transition-timing-function: ease !important;
}

/* ── Light mode — specific component overrides ───────────────────────── */

/* Body */
[data-theme="light"] body {
    background-color: var(--color-bg);
    color: var(--color-text);
}

/* Header / Nav */
[data-theme="light"] .site-header {
    background: rgba(240, 244, 248, 0.85);
    border-bottom-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .site-header.scrolled {
    background: rgba(240, 244, 248, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-logo .logo-wordmark {
    color: #0f1923;
}

[data-theme="light"] .nav-logo .logo-spark {
    color: var(--color-cyan);
}

[data-theme="light"] .nav-link {
    color: #475569;
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    color: #0f1923;
}

[data-theme="light"] .nav-login {
    color: #475569;
}

[data-theme="light"] .nav-login:hover {
    color: #0f1923;
}

/* Mobile menu */
[data-theme="light"] .mobile-menu {
    background: rgba(240, 244, 248, 0.98);
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-link {
    color: #1e293b;
}

/* Preloader */
[data-theme="light"] .preloader {
    background: #f0f4f8;
}

[data-theme="light"] .preloader-text {
    color: #0f1923;
}

[data-theme="light"] .preloader-label {
    color: #475569;
}

[data-theme="light"] .preloader-bar-wrap {
    background: rgba(0, 0, 0, 0.08);
}

/* Hero */
[data-theme="light"] .hero-section {
    background: linear-gradient(160deg, #e8eef5 0%, #f0f4f8 50%, #e2eaf4 100%);
}

[data-theme="light"] .parallax-layer-1 {
    background: radial-gradient(ellipse 70% 60% at 20% 30%, rgba(0, 153, 184, 0.1) 0%, transparent 60%);
}

[data-theme="light"] .parallax-layer-2 {
    background: radial-gradient(ellipse 60% 50% at 80% 70%, rgba(109, 40, 217, 0.07) 0%, transparent 60%);
}

[data-theme="light"] .parallax-layer-3 {
    background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

[data-theme="light"] .hero-title {
    color: #0f1923;
}

[data-theme="light"] .hero-subtitle {
    color: #475569;
}

[data-theme="light"] .hero-trust {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .trust-number {
    color: #0f1923;
}

[data-theme="light"] .trust-label {
    color: #64748b;
}

[data-theme="light"] .trust-divider {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero badge */
[data-theme="light"] .hero-badge {
    background: rgba(0, 153, 184, 0.08);
    border-color: rgba(0, 153, 184, 0.25);
}

/* Diagram nodes */
[data-theme="light"] .diagram-node {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 153, 184, 0.2);
    color: #0f1923;
}

/* Sections */
[data-theme="light"] .outcomes-section {
    background: #e8eef5;
}

[data-theme="light"] .report-section {
    background: #f0f4f8;
}

[data-theme="light"] .numbers-section {
    background: #e8eef5;
}

[data-theme="light"] .steps-section {
    background: #f0f4f8;
}

/* Section text */
[data-theme="light"] .section-title {
    color: #0f1923;
}

[data-theme="light"] .section-subtitle {
    color: #475569;
}

/* Glass cards — frosted look on light bg */
[data-theme="light"] .glass-card {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.09);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(12px);
}

[data-theme="light"] .glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14), 0 1px 0 rgba(255, 255, 255, 1) inset;
}

/* Outcome cards */
[data-theme="light"] .outcome-title {
    color: #0f1923;
}

[data-theme="light"] .outcome-body {
    color: #475569;
}

[data-theme="light"] .outcome-number {
    color: var(--color-cyan);
}

[data-theme="light"] .outcome-metric {
    border-top-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .metric-label {
    color: #64748b;
}

/* Report section */
[data-theme="light"] .report-grid-overlay {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .report-item {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .report-item strong {
    color: #0f1923;
}

[data-theme="light"] .report-item p {
    color: #475569;
}

[data-theme="light"] .report-item-icon {
    background: rgba(0, 153, 184, 0.08);
    border-color: rgba(0, 153, 184, 0.2);
}

[data-theme="light"] .report-item:hover {
    background: rgba(0, 153, 184, 0.05);
}

/* Dashboard */
[data-theme="light"] .report-dashboard {
    background: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .dashboard-header {
    background: rgba(0, 0, 0, 0.02);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dashboard-title {
    color: #64748b;
}

[data-theme="light"] .chart-row {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .chart-label {
    color: #475569;
}

[data-theme="light"] .chart-bar-wrap {
    background: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .dashboard-footer {
    background: rgba(0, 0, 0, 0.02);
    border-top-color: rgba(0, 0, 0, 0.08);
    color: #64748b;
}

/* Comparison table */
[data-theme="light"] .table-scroll-wrapper {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .comparison-table thead {
    background: rgba(0, 153, 184, 0.05);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .comparison-table th {
    color: #475569;
}

[data-theme="light"] .comparison-table td {
    color: #475569;
}

[data-theme="light"] .feature-cell {
    color: #1e293b;
    border-right-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .col-prospark {
    background: rgba(0, 153, 184, 0.06);
    border-color: var(--color-cyan);
}

[data-theme="light"] .prospark-cell {
    background: rgba(0, 153, 184, 0.04);
    color: #0f1923;
    border-color: var(--color-cyan);
}

[data-theme="light"] .comparison-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .table-scroll-hint {
    background: rgba(0, 0, 0, 0.02);
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* Steps */
[data-theme="light"] .step-title {
    color: #0f1923;
}

[data-theme="light"] .step-body-text {
    color: #475569;
}

[data-theme="light"] .step-tag {
    background: rgba(0, 153, 184, 0.1);
    border-color: rgba(0, 153, 184, 0.2);
    color: var(--color-cyan);
}

/* Industries band */
[data-theme="light"] .industries-band {
    background: #e0e9f4;
    border-top-color: rgba(0, 0, 0, 0.07);
    border-bottom-color: rgba(0, 0, 0, 0.07);
}

[data-theme="light"] .industry-chip {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

/* CTA section */
[data-theme="light"] .cta-section {
    background: #e8eef5;
}

[data-theme="light"] .cta-title {
    color: #0f1923;
}

[data-theme="light"] .cta-subtitle {
    color: #475569;
}

[data-theme="light"] .cta-ring.ring-1 {
    border-color: rgba(0, 153, 184, 0.15);
}

[data-theme="light"] .cta-ring.ring-2 {
    border-color: rgba(0, 153, 184, 0.1);
}

[data-theme="light"] .cta-ring.ring-3 {
    border-color: rgba(0, 153, 184, 0.06);
}

/* Buttons */
[data-theme="light"] .btn-ghost {
    border-color: rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

[data-theme="light"] .btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

/* Footer */
[data-theme="light"] .site-footer {
    background: #dde6ef;
    border-top-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-tagline {
    color: #475569;
}

[data-theme="light"] .footer-col-title {
    color: #0f1923;
}

[data-theme="light"] .footer-links a {
    color: #475569;
}

[data-theme="light"] .footer-links a:hover {
    color: var(--color-cyan);
}

[data-theme="light"] .footer-bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

[data-theme="light"] .social-link {
    color: #475569;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .social-link:hover {
    color: var(--color-cyan);
    border-color: var(--color-cyan);
}

/* Animated separator */
[data-theme="light"] .animated-separator {
    background: linear-gradient(90deg, transparent 0%, var(--color-cyan) 30%, var(--color-purple) 70%, transparent 100%);
    opacity: 0.3;
}

/* Scroll progress bar */
[data-theme="light"] #scroll-progress {
    background: linear-gradient(90deg, #0099b8, #6d28d9, #a21caf);
}

/* Particle canvas — lighter particles */
[data-theme="light"] #particle-canvas {
    opacity: 0.25;
}

/* Scrollbar */
[data-theme="light"] body::-webkit-scrollbar-track {
    background: #e8eef5;
}

/* ── Theme Toggle Button ─────────────────────────────────────────────────── */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--color-surface-2);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    transform: rotate(20deg) scale(1.08);
    box-shadow: 0 0 16px rgba(0, 245, 255, 0.25);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
}

/* Dark mode → show moon, hide sun */
.icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light mode → show sun, hide moon */
[data-theme="light"] .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.12);
    color: #475569;
}

[data-theme="light"] .theme-toggle:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 16px rgba(0, 153, 184, 0.2);
}

/* ── Light mode hero badge ──────────────────────────────────────────────── */
[data-theme="light"] .scroll-indicator span {
    color: #475569;
}

[data-theme="light"] .scroll-line {
    background: linear-gradient(to bottom, transparent, var(--color-cyan));
}


/* ── 2. Reset & Base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* replaced by custom cursor */
}

/* Hide scrollbar on body while keeping scroll */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    background: var(--color-bg);
}

body::-webkit-scrollbar-thumb {
    background: var(--color-purple);
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: none;
}

strong {
    color: var(--color-cyan);
    font-weight: 600;
}

/* ── 3. Utility Classes ──────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padded {
    padding: 120px 0;
}

.accent-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cyan);
    padding: 6px 16px;
    border: 1px solid rgba(0, 245, 255, 0.25);
    border-radius: 100px;
    background: rgba(0, 245, 255, 0.05);
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── 4. Glassmorphism Card ──────────────────────────────────────────────── */
.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: border-color var(--duration-base) var(--ease-out),
        transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity var(--duration-base);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(0, 245, 255, 0.25);
    box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}

.glass-card:hover::before {
    opacity: 1;
}

/* ── 5. Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    translate: -110% 0;
    transition: translate 0.4s var(--ease-out);
    border-radius: inherit;
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-cyan);
    transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover::before {
    translate: 110% 0;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--color-border-2);
    color: var(--color-cyan);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: background var(--duration-base), transform var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(0, 245, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
    transform: translateY(-2px);
}

.btn-ghost.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-base) var(--ease-out);
    flex-shrink: 0;
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

/* Ripple effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    width: 10px;
    height: 10px;
    margin: -5px;
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(40);
        opacity: 0;
    }
}

/* ── 6. Custom Cursor ───────────────────────────────────────────────────── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--color-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width var(--duration-fast), height var(--duration-fast), background var(--duration-fast);
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.cursor-trail {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

body.cursor-hover .cursor {
    width: 16px;
    height: 16px;
    background: var(--color-white);
}

body.cursor-hover .cursor-trail {
    width: 56px;
    height: 56px;
    border-color: rgba(124, 58, 237, 0.6);
    background: rgba(124, 58, 237, 0.05);
}

body.cursor-button .cursor {
    width: 0;
    height: 0;
    opacity: 0;
}

body.cursor-button .cursor-trail {
    width: 72px;
    height: 72px;
    border-color: var(--color-cyan);
    background: rgba(0, 245, 255, 0.05);
}

/* ── Light Mode Cursor Overrides ────────────────────────────────────────── */

/* Dot — dark slate, visible on light bg, no blend mode trick */
[data-theme="light"] .cursor {
    background: #0f1923;
    mix-blend-mode: normal;
    box-shadow: 0 0 0 1.5px rgba(0, 153, 184, 0.4);
    width: 8px;
    height: 8px;
}

/* Ring — dark border with slight teal tint */
[data-theme="light"] .cursor-trail {
    border-color: rgba(0, 100, 130, 0.45);
    background: rgba(0, 153, 184, 0.04);
}

/* Hover state on light bg — expand ring, cyan accent dot */
[data-theme="light"] body.cursor-hover .cursor {
    background: var(--color-cyan);
    mix-blend-mode: normal;
    box-shadow: 0 0 12px rgba(0, 153, 184, 0.5);
}

[data-theme="light"] body.cursor-hover .cursor-trail {
    border-color: rgba(0, 100, 130, 0.55);
    background: rgba(0, 153, 184, 0.07);
}

/* Button / CTA hover on light bg */
[data-theme="light"] body.cursor-button .cursor-trail {
    border-color: var(--color-cyan);
    background: rgba(0, 153, 184, 0.08);
}


/* ── 7. Preloader ─────────────────────────────────────────────────────────── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.preloader-spark {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: preload-bar 1.8s var(--ease-out) forwards;
}

.preloader-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.skeleton-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    pointer-events: none;
}

.sk-nav {
    height: 72px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 8px 8px;
    margin: 0 40px;
    animation: sk-pulse 1.5s ease-in-out infinite;
}

.sk-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 100px 40px;
}

.sk-line {
    height: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    animation: sk-pulse 1.5s ease-in-out infinite;
}

.sk-line--wide {
    width: 70%;
}

.sk-line--medium {
    width: 50%;
    animation-delay: 0.15s;
}

.sk-line--short {
    width: 30%;
    animation-delay: 0.3s;
}

.sk-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.sk-btn {
    width: 180px;
    height: 52px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    animation: sk-pulse 1.5s ease-in-out infinite;
}

.sk-btn:last-child {
    animation-delay: 0.2s;
}

@keyframes preload-bar {
    to {
        width: 100%;
    }
}

@keyframes sk-pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ── 8. Navigation ─────────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--duration-base), backdrop-filter var(--duration-base), border-color var(--duration-base);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: height var(--duration-base);
}

.site-header.scrolled .nav-container {
    height: 64px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
}

.logo-spark {
    font-size: 1.5rem;
}

.logo-wordmark {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    margin-left: 20px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    position: relative;
    transition: color var(--duration-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: var(--gradient-primary);
    scale: 0 1;
    transform-origin: left;
    transition: scale var(--duration-base) var(--ease-out);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after {
    scale: 1 1;
}

.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after {
    scale: 1 1;
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.nav-login {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--duration-base);
}

.nav-login:hover {
    color: var(--color-white);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 40px 30px;
    background: rgba(8, 12, 20, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    transition: color var(--duration-base);
}

.mobile-link:hover {
    color: var(--color-white);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.mobile-login {
    text-align: center;
    padding: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* ── 9. Hero Section ───────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 40px 80px;
}

/* Particle canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Parallax layers */
.parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.parallax-layer-1 {
    background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 245, 255, 0.06) 0%, transparent 60%);
    z-index: 1;
}

.parallax-layer-2 {
    background: radial-gradient(ellipse 50% 40% at 20% 70%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.parallax-layer-3 {
    background:
        radial-gradient(circle 800px at 50% 50%, rgba(0, 245, 255, 0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'%3E%3Cpath d='M0 0 L80 0 M0 80 L80 80 M0 0 L0 80 M80 0 L80 80'/%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

/* System diagram floating nodes */
.hero-diagram {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.diagram-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    backdrop-filter: blur(10px);
    animation: float-node linear infinite;
}

.diagram-node svg {
    flex-shrink: 0;
}

.node-1 {
    top: 18%;
    left: 8%;
    animation-duration: 6s;
}

.node-2 {
    top: 25%;
    right: 10%;
    animation-duration: 8s;
    animation-delay: -2s;
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.05);
}

.node-3 {
    bottom: 30%;
    left: 12%;
    animation-duration: 7s;
    animation-delay: -4s;
    border-color: rgba(240, 171, 252, 0.2);
    background: rgba(240, 171, 252, 0.04);
}

.node-4 {
    bottom: 25%;
    right: 8%;
    animation-duration: 9s;
    animation-delay: -1s;
}

.diagram-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.diagram-line {
    stroke: var(--color-cyan);
    stroke-width: 1;
    stroke-dasharray: 4 4;
    animation: dash-flow 4s linear infinite;
}

.dl-2 {
    stroke: var(--color-purple);
    animation-delay: -1.5s;
}

.dl-3 {
    stroke: var(--color-magenta);
    animation-delay: -3s;
}

@keyframes float-node {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -20;
    }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cyan);
    background: rgba(0, 245, 255, 0.05);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 245, 255, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 28px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.trust-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-cyan);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
    text-align: center;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    opacity: 0.4;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-cyan));
    animation: scroll-line 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

@keyframes scroll-line {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ── 10. Section Background Glow ────────────────────────────────────────────── */
.section-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glow-cyan {
    background: var(--gradient-glow-cyan);
    background-position: center top;
}

.glow-purple {
    background: var(--gradient-glow-purple);
    background-position: center top;
}

.glow-cyan-strong {
    background: radial-gradient(ellipse 600px 400px at center, rgba(0, 245, 255, 0.18) 0%, transparent 70%);
}

/* ── 11. Outcomes Section ─────────────────────────────────────────────────── */
.outcomes-section {
    position: relative;
    background: var(--color-bg-2);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outcome-card {
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.outcome-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-cyan);
    opacity: 0.5;
}

.outcome-icon {
    width: 48px;
    height: 48px;
}

.outcome-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

.outcome-body {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    flex: 1;
}

.outcome-metric {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.05em;
}

/* Tilt card effect */
.tilt-card {
    transform-style: preserve-3d;
}

/* ── 12. Report Section ────────────────────────────────────────────────────── */
.report-section {
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.report-bg-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.report-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

.report-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.report-content {
    display: flex;
    flex-direction: column;
}

.report-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 32px 0 40px;
}

.report-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.report-item:first-child {
    padding-top: 0;
}

.report-item:last-child {
    border-bottom: none;
}

.report-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
}

.report-item-icon svg {
    width: 18px;
    height: 18px;
}

.report-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.report-item p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Report dashboard */
.report-dashboard {
    padding: 0;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-amber {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.dashboard-title {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    flex: 1;
    text-align: center;
    letter-spacing: 0.05em;
}

.dashboard-live-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #28c840;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.dashboard-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.chart-row:last-child {
    border-bottom: none;
}

.chart-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    width: 140px;
    flex-shrink: 0;
}

.chart-bar-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s var(--ease-out);
}

.chart-bar.animated {
    width: var(--width);
}

.chart-pct {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-cyan);
    width: 36px;
    text-align: right;
}

.dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    font-size: 0.6875rem;
    color: var(--color-text-dim);
}

.dashboard-ping {
    width: 6px;
    height: 6px;
    background: #28c840;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

/* ── 13. Numbers — Comparison Table ───────────────────────────────────────── */
.numbers-section {
    position: relative;
    background: var(--color-bg-2);
}

.table-scroll-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.table-scroll-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll-track::-webkit-scrollbar {
    height: 4px;
}

.table-scroll-track::-webkit-scrollbar-track {
    background: transparent;
}

.table-scroll-track::-webkit-scrollbar-thumb {
    background: var(--color-purple);
    border-radius: 2px;
}

.comparison-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.comparison-table thead {
    background: rgba(0, 245, 255, 0.04);
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.col-prospark {
    background: rgba(0, 245, 255, 0.08);
    border-left: 2px solid var(--color-cyan);
    border-right: 2px solid var(--color-cyan);
}

.th-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.th-badge {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
}

.th-tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background var(--duration-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 18px 24px;
    color: var(--color-text-muted);
    vertical-align: middle;
}

.feature-cell {
    font-weight: 500;
    color: var(--color-text);
    border-right: 1px solid var(--color-border);
}

.prospark-cell {
    background: rgba(0, 245, 255, 0.04);
    border-left: 2px solid var(--color-cyan);
    border-right: 2px solid var(--color-cyan);
    font-weight: 600;
    color: var(--color-white);
}

.val-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.125rem;
}

.check-icon {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
}

.cross-icon {
    color: #ef4444;
    font-size: 1.25rem;
}

.partial-icon {
    color: var(--color-text-dim);
    font-size: 1.25rem;
}

.table-scroll-hint {
    padding: 12px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    display: none;
}

/* ── 14. Steps Section ─────────────────────────────────────────────────────── */
.steps-section {
    background: var(--color-bg);
}

.steps-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

/* Connector line between steps */
.steps-layout::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-purple), transparent);
    opacity: 0.25;
    pointer-events: none;
}

.step-card {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-num-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-body-text {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-cyan);
    background: rgba(0, 245, 255, 0.05);
    letter-spacing: 0.05em;
}

/* ── 15. Industries Band ───────────────────────────────────────────────────── */
.industries-band {
    padding: 0;
    overflow: hidden;
    background: var(--color-bg-2);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.industries-band::before,
.industries-band::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.industries-band::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-2), transparent);
}

.industries-band::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-2), transparent);
}

.industries-inner {
    display: flex;
    gap: 12px;
    padding: 20px 0;
    animation: industries-scroll 30s linear infinite;
    width: max-content;
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-surface);
    white-space: nowrap;
    transition: border-color var(--duration-base), color var(--duration-base);
}

.industry-chip:hover {
    border-color: var(--color-cyan);
    color: var(--color-white);
}

@keyframes industries-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── 16. CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
    position: relative;
    background: var(--color-bg);
}

.cta-card {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse 40% 60% at 80% 50%, rgba(0, 245, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin: 16px 0 20px;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-visual {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    z-index: 1;
}

.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 245, 255, 0.15);
    animation: cta-ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
    inset: 0;
    animation-delay: 0s;
}

.ring-2 {
    inset: -20px;
    animation-delay: 0.5s;
    border-color: rgba(124, 58, 237, 0.1);
}

.ring-3 {
    inset: -40px;
    animation-delay: 1s;
    border-color: rgba(0, 245, 255, 0.06);
}

@keyframes cta-ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.cta-core {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50%;
}

.cta-core svg {
    width: 60px;
    height: 60px;
}

/* ── 17. Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-bg-3);
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer-divider-anim {
    height: 2px;
    background: var(--gradient-primary);
    animation: divider-flow 4s linear infinite;
    background-size: 200% 100%;
}

@keyframes divider-flow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 72px 0 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 32px;
}

.footer-logo-fallback {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-dim);
    transition: color var(--duration-base), border-color var(--duration-base), background var(--duration-base);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    color: var(--color-cyan);
    border-color: rgba(0, 245, 255, 0.3);
    background: rgba(0, 245, 255, 0.05);
}

.footer-col-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color var(--duration-base);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy,
.footer-reg {
    font-size: 0.8125rem;
    color: var(--color-text-dim);
}

/* ── 18. Scroll Reveal Animations ────────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-line.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 19. Responsive Breakpoints ─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-card {
        padding: 60px;
    }

    .report-layout {
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .report-layout {
        grid-template-columns: 1fr;
    }

    .report-visual {
        order: -1;
    }

    .report-dashboard {
        max-width: 560px;
        margin: 0 auto;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-visual {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padded {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .hero-section {
        padding: 100px 24px 60px;
    }

    .hero-trust {
        gap: 20px;
        padding: 20px 24px;
    }

    .trust-divider {
        height: 30px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .steps-layout {
        grid-template-columns: 1fr;
    }

    .steps-layout::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .table-scroll-hint {
        display: block;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
    }

    .hero-diagram {
        display: none;
    }

    .industries-band::before,
    .industries-band::after {
        width: 60px;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-trail {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ENHANCED SCROLL ANIMATIONS — Added Layer
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Directional Reveal: Slide from Left ────────────────────────────────── */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Directional Reveal: Slide from Right ───────────────────────────────── */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Scale-In Reveal ────────────────────────────────────────────────────── */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Flip-In (rotateX) ──────────────────────────────────────────────────── */
.reveal-flip {
    opacity: 0;
    transform: perspective(700px) rotateX(20deg) translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(700px) rotateX(0deg) translateY(0);
}

/* ── Blur-to-Focus ──────────────────────────────────────────────────────── */
.reveal-focus {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.reveal-focus.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* ── Stagger Container: auto-staggers direct .stagger-child elements ─────── */
.stagger-container .stagger-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-container.visible .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

/* JS sets transition-delay per-child */

/* ── Split Word Animation ───────────────────────────────────────────────── */
.split-word-wrap {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.split-word.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Split Char Animation ───────────────────────────────────────────────── */
.split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(60%) rotateX(-30deg);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.split-char.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* ── SVG Line Draw ──────────────────────────────────────────────────────── */
.svg-draw path,
.svg-draw line,
.svg-draw polyline,
.svg-draw rect,
.svg-draw circle {
    stroke-dasharray: var(--path-length, 500);
    stroke-dashoffset: var(--path-length, 500);
    transition: stroke-dashoffset 1.2s var(--ease-out);
}

.svg-draw.visible path,
.svg-draw.visible line,
.svg-draw.visible polyline,
.svg-draw.visible rect,
.svg-draw.visible circle {
    stroke-dashoffset: 0;
}

/* ── Section Parallax Depth Layers ─────────────────────────────────────── */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-content {
    position: relative;
    z-index: 2;
}

.section-depth-bg {
    position: absolute;
    inset: -10%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* ── Table Row Stagger ──────────────────────────────────────────────────── */
.comparison-table tbody tr {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
        background var(--duration-fast);
}

.comparison-table.table-visible tbody tr {
    opacity: 1;
    transform: translateX(0);
}

/* ── Steps connector animated draw ─────────────────────────────────────── */
.steps-line-svg {
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    height: 4px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.steps-line-path {
    stroke: url(#stepsLineGrad);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1.5s var(--ease-out);
    opacity: 0.4;
}

.steps-line-path.visible {
    stroke-dashoffset: 0;
}

/* ── Outcome card icon breathe ──────────────────────────────────────────── */
@keyframes icon-breathe {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.3));
    }

    50% {
        transform: scale(1.08) rotate(3deg);
        filter: drop-shadow(0 0 16px rgba(0, 245, 255, 0.6));
    }
}

.outcome-card.visible .outcome-icon {
    animation: icon-breathe 4s ease-in-out infinite;
}

/* ── Number count-up pop ────────────────────────────────────────────────── */
@keyframes count-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        color: var(--color-cyan);
    }

    100% {
        transform: scale(1);
    }
}

.count-pop {
    animation: count-pop 0.4s var(--ease-out);
}

/* ── Section separator line animation ──────────────────────────────────── */
.animated-separator {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-cyan) 30%,
            var(--color-purple) 70%,
            transparent 100%);
    width: 0%;
    transition: width 1.2s var(--ease-out);
    margin: 0 auto;
}

.animated-separator.visible {
    width: 80%;
}

/* ── Stat bar (hero trust bar under numbers) ────────────────────────────── */
.stat-underbar {
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 1.2s var(--ease-out);
    margin-top: 6px;
}

.hero-trust.visible .stat-underbar {
    width: 100%;
}

/* ── Floating glow blob that moves with scroll ──────────────────────────── */
.scroll-glow-blob {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transition: top 0.4s ease, left 0.4s ease;
    transform: translate(-50%, -50%);
}

/* ── Report item icon animated border reveal ────────────────────────────── */
.report-item-icon {
    position: relative;
    overflow: hidden;
}

.report-item-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.6s var(--ease-out);
}

.report-item.visible .report-item-icon::after {
    width: 100%;
}

/* ── CTA section entrance ───────────────────────────────────────────────── */
.cta-card {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.cta-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ── Footer brand stagger ───────────────────────────────────────────────── */
.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.footer-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-brand {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.footer-brand.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hover glow effect on report items ─────────────────────────────────── */
.report-item {
    transition: background 0.3s, padding-left 0.3s;
    border-radius: 8px;
    padding-left: 0;
}

.report-item:hover {
    background: rgba(0, 245, 255, 0.04);
    padding-left: 8px;
}

/* ── Step card sequential flash border ─────────────────────────────────── */
@keyframes border-flash {
    0% {
        border-color: rgba(0, 245, 255, 0.08);
    }

    50% {
        border-color: rgba(0, 245, 255, 0.35);
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.12);
    }

    100% {
        border-color: rgba(0, 245, 255, 0.08);
    }
}

.step-card.flash {
    animation: border-flash 0.5s var(--ease-out);
}