/* ===== HUBFLASH LANDING PAGE — PREMIUM DESIGN ===== */

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

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6d28d9;
    --purple-900: #5b21b6;
    --dark-950: #080510;
    --dark-900: #0c0a18;
    --dark-800: #12101f;
    --dark-700: #1a1730;
    --dark-600: #252240;
    --dark-500: #322e52;
    --green-400: #34d399;
    --green-500: #10b981;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(139,92,246,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-950);
    color: var(--gray-300);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Space Background --- */
.space-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        /* Pink/magenta core nebula */
        radial-gradient(ellipse 45% 40% at 45% 45%, rgba(200,50,180,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 30% 25% at 50% 50%, rgba(255,80,200,0.2) 0%, transparent 50%),
        /* Blue/purple surrounding glow */
        radial-gradient(ellipse 55% 45% at 60% 40%, rgba(80,60,220,0.3) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 35% 55%, rgba(120,40,180,0.2) 0%, transparent 50%),
        /* Deep blue accents */
        radial-gradient(ellipse 40% 35% at 75% 30%, rgba(40,80,200,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 35% 40% at 20% 35%, rgba(30,50,160,0.15) 0%, transparent 50%),
        /* Subtle outer violet */
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(60,20,120,0.2) 0%, transparent 65%),
        /* Dark space base */
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8,3,20,1) 0%, rgba(2,1,8,1) 100%);
    animation: nebulaShift 30s ease-in-out infinite alternate;
}

/* Nebula cloud layers */
.space-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 25% 20% at 40% 42%, rgba(220,60,180,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 30% 25% at 55% 38%, rgba(100,80,240,0.15) 0%, transparent 55%),
        radial-gradient(ellipse 20% 30% at 30% 60%, rgba(80,30,160,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 25% 20% at 70% 55%, rgba(60,100,200,0.1) 0%, transparent 50%);
    animation: nebulaShift 25s ease-in-out infinite alternate-reverse;
}

.space-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 15% 12% at 48% 48%, rgba(255,120,220,0.1) 0%, transparent 50%),
        radial-gradient(ellipse 20% 15% at 58% 42%, rgba(80,60,220,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 10% 8% at 25% 25%, rgba(100,150,255,0.08) 0%, transparent 50%);
    animation: nebulaShift 20s ease-in-out infinite alternate;
    animation-delay: -8s;
}

@keyframes nebulaShift {
    0% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.02) translate(5px, -5px); }
    66% { transform: scale(0.98) translate(-5px, 3px); }
    100% { transform: scale(1.01) translate(3px, -3px); }
}

/* Stars container */
.stars-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    animation: twinkle var(--twinkle-duration, 3s) ease-in-out infinite alternate,
               starDrift var(--drift-duration, 40s) linear infinite;
    box-shadow: 0 0 var(--glow-size, 3px) rgba(255,255,255,0.6);
}

.star--blue { background: #a0d2ff; box-shadow: 0 0 var(--glow-size, 3px) rgba(160,210,255,0.7); }
.star--purple { background: #d4b4ff; box-shadow: 0 0 var(--glow-size, 3px) rgba(212,180,255,0.7); }
.star--orange { background: #ffd4a0; box-shadow: 0 0 var(--glow-size, 3px) rgba(255,212,160,0.7); }

@keyframes twinkle {
    0% { opacity: var(--min-opacity, 0.2); transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: var(--min-opacity, 0.3); transform: scale(0.9); }
}

@keyframes starDrift {
    0% { translate: 0 0; }
    25% { translate: var(--dx1, 10px) var(--dy1, -15px); }
    50% { translate: var(--dx2, -8px) var(--dy2, 12px); }
    75% { translate: var(--dx3, 12px) var(--dy3, -8px); }
    100% { translate: 0 0; }
}

/* Shooting stars */
.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(180,160,255,0.4), transparent);
    border-radius: 2px;
    opacity: 0;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
}

.shooting-star--fast {
    animation: shootFast var(--shoot-duration, 4s) linear infinite;
}
.shooting-star--slow {
    animation: shootSlow var(--shoot-duration, 8s) linear infinite;
}
.shooting-star--diagonal {
    animation: shootDiagonal var(--shoot-duration, 5s) linear infinite;
}

@keyframes shootFast {
    0% { transform: translateX(0) translateY(0) rotate(var(--angle, -35deg)); opacity: 0; width: 0; }
    1% { opacity: 1; width: var(--trail-width, 120px); }
    5% { transform: translateX(500px) translateY(300px) rotate(var(--angle, -35deg)); opacity: 0; width: var(--trail-width, 120px); }
    100% { opacity: 0; }
}

@keyframes shootSlow {
    0% { transform: translateX(0) translateY(0) rotate(var(--angle, -25deg)); opacity: 0; width: 0; }
    2% { opacity: 0.8; width: var(--trail-width, 100px); }
    8% { transform: translateX(600px) translateY(250px) rotate(var(--angle, -25deg)); opacity: 0; width: var(--trail-width, 100px); }
    100% { opacity: 0; }
}

@keyframes shootDiagonal {
    0% { transform: translateX(0) translateY(0) rotate(var(--angle, -45deg)); opacity: 0; width: 0; }
    1.5% { opacity: 1; width: var(--trail-width, 150px); }
    6% { transform: translateX(400px) translateY(400px) rotate(var(--angle, -45deg)); opacity: 0; width: var(--trail-width, 150px); }
    100% { opacity: 0; }
}

/* Bright star points (larger glowing stars) */
.star--bright {
    background: #fff;
    box-shadow:
        0 0 4px 1px rgba(255,255,255,0.8),
        0 0 12px 2px rgba(180,160,255,0.4),
        0 0 20px 4px rgba(139,92,246,0.2);
    animation: twinkleBright var(--twinkle-duration, 2s) ease-in-out infinite alternate,
               starDrift var(--drift-duration, 50s) linear infinite;
}

@keyframes twinkleBright {
    0% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0.6; transform: scale(1); }
}

h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--white); line-height: 1.15; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.gradient-text {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600), var(--purple-400));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray-400); }

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-600));
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,92,246,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg, .btn-primary span { position: relative; z-index: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--gray-200);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--purple-500); color: var(--white); background: rgba(139,92,246,0.05); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover { color: var(--white); }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-white {
    background: var(--white);
    color: var(--purple-700);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}
.btn-white::before { background: var(--gray-100); }
.btn-white:hover { box-shadow: 0 8px 25px rgba(255,255,255,0.3); }

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: var(--white); }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(8,5,16,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(139,92,246,0.08);
    padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.logo-text strong { font-weight: 700; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple-500);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-300);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0 40px;
    overflow: hidden;
    background: transparent;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}
/* Globe background */
.hero-globe {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.globe-img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black 30%, transparent 75%);
}
@keyframes globePulse {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.45; transform: translateX(-50%) scale(1.02); }
}

/* Trading Charts */
.trading-charts {
    position: absolute;
    top: 5%;
    left: -10%;
    right: -10%;
    height: 95%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}
.trading-svg {
    width: 100%;
    height: 100%;
}
.chart-wave-1 {
    animation: waveMove1 6s ease-in-out infinite;
}
.chart-wave-2 {
    animation: waveMove2 8s ease-in-out infinite;
}
.chart-wave-3 {
    animation: waveMove3 7s ease-in-out infinite;
}
@keyframes waveMove1 {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(10px) translateX(-5px); }
    75% { transform: translateY(-8px) translateX(3px); }
    100% { transform: translateY(0) translateX(0); }
}
@keyframes waveMove2 {
    0% { transform: translateY(0) translateX(0); }
    30% { transform: translateY(12px) translateX(-8px); }
    60% { transform: translateY(-18px) translateX(6px); }
    100% { transform: translateY(0) translateX(0); }
}
@keyframes waveMove3 {
    0% { transform: translateY(0) translateX(0); }
    35% { transform: translateY(-10px) translateX(10px); }
    65% { transform: translateY(15px) translateX(-7px); }
    100% { transform: translateY(0) translateX(0); }
}
.candles {
    animation: candleShift 10s ease-in-out infinite;
}
@keyframes candleShift {
    0% { transform: translateY(0); }
    25% { transform: translateY(-12px); }
    50% { transform: translateY(8px); }
    75% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Blinking dots on the globe */
.globe-dots {
    position: absolute;
    inset: 0;
}
.globe-dot {
    position: absolute;
    width: var(--dot-size, 4px);
    height: var(--dot-size, 4px);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.6), 0 0 15px 4px rgba(139,92,246,0.3);
    animation: dotBlink var(--blink-speed, 2s) ease-in-out infinite;
    opacity: 0;
}
@keyframes dotBlink {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    15% { opacity: 1; transform: scale(1.2); }
    30% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 0; transform: scale(0.5); }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(139,92,246,0.12);
    top: 5%;
    left: 20%;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(109,40,217,0.1);
    top: 30%;
    right: 10%;
    animation-delay: -3s;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(16,185,129,0.06);
    bottom: 20%;
    left: 40%;
    animation-delay: -5s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 32px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.metric { text-align: center; }
.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}
.metric-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--purple-400);
}
.metric-label { display: block; font-size: 0.85rem; color: var(--gray-500); margin-top: 4px; }
.metric-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* --- Hero Visual (Dashboard Preview) --- */
.hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.dashboard-preview {
    background: rgba(12,10,24,0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139,92,246,0.25);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 30px rgba(139,92,246,0.15),
        0 40px 80px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
}
.dashboard-preview::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(139,92,246,0.4), transparent 40%, transparent 60%, rgba(139,92,246,0.2));
    z-index: -1;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 2px;
}
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(139,92,246,0.12);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #10b981; }
.dash-title { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }
.dash-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--white);
}

.dash-body { padding: 24px; }
.dash-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.dash-stat {
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(139,92,246,0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.dash-stat:hover {
    border-color: rgba(139,92,246,0.3);
    background: rgba(139,92,246,0.05);
}
.dash-stat-label { display: block; font-size: 0.75rem; color: var(--gray-500); margin-bottom: 8px; }
.dash-stat-value { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.dash-stat-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}
.dash-stat-badge.up { background: rgba(16,185,129,0.1); color: var(--green-500); }

.dash-chart {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.dash-chart-3d {
    perspective: 600px;
}
.chart-3d-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
    animation: chart3dFloat 5s ease-in-out infinite;
    transform-origin: center center;
}
@keyframes chart3dFloat {
    0% { transform: rotateY(-3deg) rotateX(2deg) scale(1); }
    25% { transform: rotateY(2deg) rotateX(-1deg) scale(1.02); }
    50% { transform: rotateY(3deg) rotateX(2deg) scale(1.01); }
    75% { transform: rotateY(-2deg) rotateX(-2deg) scale(1.03); }
    100% { transform: rotateY(-3deg) rotateX(2deg) scale(1); }
}
/* Glow pulse under the chart */
.dash-chart-3d::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.3) 0%, transparent 70%);
    filter: blur(15px);
    animation: chartGlow 5s ease-in-out infinite;
}
@keyframes chartGlow {
    0%, 100% { opacity: 0.4; transform: scaleX(0.9); }
    50% { opacity: 0.7; transform: scaleX(1.1); }
}
.chart-line { width: 100%; height: auto; }

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(12,10,24,0.9);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(139,92,246,0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(139,92,246,0.1), 0 20px 40px rgba(0,0,0,0.4);
    z-index: 10;
    animation: float-card 6s ease-in-out infinite;
}
.card-pix { top: 15%; left: -40px; animation-delay: 0s; }
.card-approved { bottom: 25%; right: -30px; animation-delay: -2s; }

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

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pix-icon { background: rgba(16,185,129,0.1); }
.approved-icon { background: rgba(16,185,129,0.1); }
.fc-info { display: flex; flex-direction: column; gap: 2px; }
.fc-label { font-size: 0.75rem; color: var(--gray-500); }
.fc-value { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.fc-time { font-size: 0.7rem; color: var(--green-500); font-weight: 500; }
.fc-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(16,185,129,0.1);
    color: var(--green-500);
}

/* --- Trusted — Marquee --- */
.trusted { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.04); background: transparent; overflow: hidden; }
.trusted-label { text-align: center; font-size: 0.85rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 40px; }

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    opacity: 0.55;
    transition: opacity 0.4s ease;
    cursor: default;
}

.marquee-item:hover {
    opacity: 0.9;
}

.marquee-item svg {
    height: 52px;
    width: auto;
}

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

/* --- Solutions --- */
.solutions { padding: 120px 0; background: rgba(8,5,16,0.4); position: relative; overflow: hidden; }
.solutions-bg-img {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.solutions-arrow {
    width: 100%;
    height: auto;
    filter: hue-rotate(20deg) brightness(1.2);
}
.solutions .container { position: relative; z-index: 1; }
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.solution-card {
    padding: 32px;
    background: rgba(12,10,24,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(139,92,246,0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.solution-card:hover {
    border-color: rgba(139,92,246,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.solution-card:hover::before { opacity: 1; }

.sc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(139,92,246,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--icon-color, var(--purple-500));
}
.solution-card h3 { font-size: 1.15rem; margin-bottom: 12px; position: relative; }
.solution-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 20px; position: relative; }
.sc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-400);
    transition: var(--transition);
    position: relative;
}
.sc-link:hover { color: var(--purple-300); gap: 10px; }

/* --- Niches Section --- */
.niches-section { padding: 120px 0; background: rgba(8,5,16,0.3); }
.niches-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.niche-card {
    padding: 28px 24px;
    background: rgba(12,10,24,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}
.niche-card:hover {
    border-color: rgba(139,92,246,0.3);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(139,92,246,0.12);
}
.niche-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(139,92,246,0.1);
    color: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.niche-icon-green { background: rgba(16,185,129,0.1); color: #10B981; }
.niche-icon-pink { background: rgba(236,72,153,0.1); color: #EC4899; }
.niche-icon-amber { background: rgba(245,158,11,0.1); color: #F59E0B; }
.niche-icon-cyan { background: rgba(6,182,212,0.1); color: #06B6D4; }
.niche-card h4 { font-size: 1rem; margin-bottom: 8px; }
.niche-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }

.d2-banner {
    background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(12,10,24,0.8));
    border: 2px solid rgba(139,92,246,0.3);
    border-radius: var(--radius-xl);
    padding: 36px 48px;
    box-shadow: 0 0 40px rgba(139,92,246,0.1);
}
.d2-content {
    display: flex;
    align-items: center;
    gap: 28px;
}
.d2-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 30px rgba(139,92,246,0.4);
    animation: d2Pulse 2s ease-in-out infinite;
}
@keyframes d2Pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(139,92,246,0.4), 0 0 0 0 rgba(139,92,246,0.3); }
    50% { box-shadow: 0 0 30px rgba(139,92,246,0.4), 0 0 0 15px rgba(139,92,246,0); }
}
.d2-content h3 { font-size: 1.3rem; margin-bottom: 4px; }
.d2-content p { font-size: 0.95rem; color: var(--gray-400); }

@media (max-width: 1024px) {
    .niches-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .niches-grid { grid-template-columns: repeat(2, 1fr); }
    .d2-content { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .niches-grid { grid-template-columns: 1fr; }
}

/* --- Showcase (Multi-Monitor) --- */
.showcase-section {
    padding: 80px 0;
    background: transparent;
    overflow: hidden;
}
.showcase-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(139,92,246,0.2);
    box-shadow: 0 0 40px rgba(139,92,246,0.12), 0 30px 60px rgba(0,0,0,0.4);
}
.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85);
}
.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(8,5,16,0.9));
}
.showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
}
.showcase-overlay p {
    font-size: 0.95rem;
    color: var(--gray-400);
}

/* --- Advantages --- */
.advantages { padding: 120px 0; background: transparent; }
.adv-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.adv-left h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.adv-left > p { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }

.adv-list { display: flex; flex-direction: column; gap: 24px; }
.adv-item { display: flex; gap: 16px; align-items: flex-start; }
.adv-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(139,92,246,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.adv-item strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.adv-item span { font-size: 0.85rem; color: var(--gray-400); }

/* Advantages Visual */
.adv-visual { position: relative; }
.adv-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(139,92,246,0.2);
    box-shadow: 0 0 40px rgba(139,92,246,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.adv-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);
}
.adv-badges { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.av-card-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(12,10,24,0.85);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(139,92,246,0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float-card 5s ease-in-out infinite;
    pointer-events: auto;
    top: 15%;
    right: -20px;
}
.av-card-floating strong { display: block; color: var(--white); font-size: 0.85rem; }
.av-card-floating span { font-size: 0.75rem; color: var(--gray-400); }
.av-card-bottom { top: auto; bottom: 15%; right: auto; left: -20px; animation-delay: -2s; }

.av-card {
    padding: 24px;
    background: rgba(12,10,24,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.av-card:hover { border-color: rgba(139,92,246,0.15); transform: translateX(8px); }
.av-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(139,92,246,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.av-card h4 { font-size: 1rem; margin-bottom: 8px; }
.av-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.6; }

/* --- Pricing --- */
.pricing { padding: 120px 0; background: rgba(8,5,16,0.35); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
    padding: 36px;
    background: rgba(12,10,24,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { border-color: rgba(139,92,246,0.15); transform: translateY(-4px); }

.pricing-featured {
    background: linear-gradient(180deg, rgba(139,92,246,0.15), rgba(12,10,24,0.8));
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 0 60px rgba(139,92,246,0.15);
    transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pc-header { margin-bottom: 24px; }
.pc-name { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pc-desc { font-size: 0.85rem; color: var(--gray-500); }

.pc-price { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pc-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.pc-percent { font-size: 1.5rem; }
.pc-per { display: block; font-size: 0.8rem; color: var(--gray-500); margin-top: 8px; }

.pc-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-300);
}

/* --- Testimonials --- */
.testimonials { padding: 120px 0; background: transparent; position: relative; overflow: hidden; }
.testimonials-bg-img {
    position: absolute;
    left: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 400px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: grayscale(0.5);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}
.testimonials-bg-photo {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    padding: 32px;
    background: rgba(12,10,24,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(139,92,246,0.15); transform: translateY(-4px); }

.tc-stars { margin-bottom: 20px; }
.tc-stars span { color: #F59E0B; font-size: 1.2rem; letter-spacing: 2px; }
.tc-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(139,92,246,0.3);
}
.tc-text { font-size: 0.95rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.tc-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.tc-author span { font-size: 0.8rem; color: var(--gray-500); }

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(91,33,182,0.6), rgba(8,5,16,0.7), rgba(91,33,182,0.6)); }
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.cta-bg-office {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(0.1) brightness(0.9);
    mix-blend-mode: normal;
}
.cta-orb-1 { width: 500px; height: 500px; background: rgba(139,92,246,0.15); top: -20%; left: -10%; }
.cta-orb-2 { width: 400px; height: 400px; background: rgba(109,40,217,0.12); bottom: -20%; right: -10%; }
.cta-bg-chart {
    position: absolute;
    left: -5%;
    bottom: -10%;
    width: 45%;
    max-width: 500px;
    opacity: 0.1;
    filter: brightness(1.3);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}
.cta-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-content p { font-size: 1.1rem; color: var(--gray-400); margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Footer --- */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(8,5,16,0.7);
    backdrop-filter: blur(10px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: var(--transition);
}
.footer-contact-item:hover { color: var(--purple-400); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
}
.footer-social a:hover { border-color: var(--purple-500); color: var(--purple-400); background: rgba(139,92,246,0.05); }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--gray-200);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: var(--gray-500); transition: var(--transition); }
.footer-col a:hover { color: var(--purple-400); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-600); }

/* --- Floating Social Buttons --- */
.floating-social {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.float-btn:hover {
    transform: scale(1.12);
}
.float-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 20px rgba(37,211,102,0.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.float-whatsapp:hover {
    box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 30px rgba(37,211,102,0.3);
}
.float-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 15px rgba(225,48,108,0.3);
}
.float-instagram:hover {
    box-shadow: 0 6px 25px rgba(225,48,108,0.5);
}
.float-facebook {
    background: #1877F2;
    box-shadow: 0 4px 15px rgba(24,119,242,0.3);
}
.float-facebook:hover {
    box-shadow: 0 6px 25px rgba(24,119,242,0.5);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
    50% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].visible { opacity: 1; transform: translate(0) !important; }

/* Hero elements animate in immediately on load */
.hero [data-animate] {
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero [data-animate][data-delay="100"] { animation-delay: 0.1s; }
.hero [data-animate][data-delay="200"] { animation-delay: 0.2s; }
.hero [data-animate][data-delay="300"] { animation-delay: 0.3s; }
.hero [data-animate][data-delay="400"] { animation-delay: 0.4s; }
.hero [data-animate][data-delay="500"] { animation-delay: 0.6s; }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; }
    .adv-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-card { display: none; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8,5,16,0.97);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(139,92,246,0.1);
    }
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 180px);
        left: 0;
        right: 0;
        background: rgba(8,5,16,0.97);
        backdrop-filter: blur(20px);
        padding: 0 24px 24px;
    }

    .hero { padding: 100px 0 40px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-metrics { gap: 24px; }
    .metric-divider { display: none; }

    .solutions-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card:last-child { grid-column: auto; max-width: none; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .dash-stat-row { grid-template-columns: 1fr; }
    .hero-visual { padding: 0 16px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary, .cta-actions .btn-ghost-white { width: 100%; justify-content: center; }
}
