/* Gateway Hero Specifics */
.gateway-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.floating-card-ui {
    width: 280px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.success-pop {
    position: absolute;
    bottom: 20%;
    right: 10%;
    background: #064e3b;
    color: #34d399;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid #059669;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

/* Feature Icons */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--violet-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
    color: var(--violet-glow);
}

/* Technical Bullets */
.tech-bullet {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid var(--violet-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-glow);
    font-weight: 800;
    font-size: 0.8rem;
}

/* UI Placeholders */
.placeholder-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.btn-placeholder { height: 40px; background: var(--violet-glow); border-radius: 12px; width: 100%; }

/* Container Depth */
.hero-engine-wrapper {
    perspective: 1000px;
    position: relative;
}

/* Background Money Orbit */
.money-orbit {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-coin {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-glow);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.coin-1 { top: -20px; left: 50%; }
.coin-2 { bottom: 20%; left: -10px; }
.coin-3 { bottom: 20%; right: -10px; }

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

/* The Payment Terminal Card */
.payment-terminal {
    background: rgba(15, 10, 29, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    padding: 35px;
    width: 320px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    transform: rotateX(10deg) rotateY(-5deg);
    transition: 0.5s;
}

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

/* Progress Sequence */
.progress-container {
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--violet-glow), #22d3ee);
    animation: fillProgress 3s infinite ease-in-out;
}

@keyframes fillProgress {
    0% { width: 0%; }
    80% { width: 100%; }
    100% { width: 100%; }
}

/* Success Pop V2 */
.success-pop-v2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: #0f172a;
    border: 1px solid #10b981;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: 2.5s;
    opacity: 0;
}

.success-icon {
    width: 40px; height: 40px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* UI Details */
.secure-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}

.btn-morph {
    background: var(--violet-glow);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: btnFlash 3s infinite;
}

@keyframes btnFlash {
    0%, 80% { opacity: 1; }
    85% { background: #10b981; content: 'Success'; }
    100% { opacity: 1; }
}
/* Color Variables */
:root {
    --card-onyx: #121212;
    --card-gold: #a6845e;
    --violet-brand: #8b5cf6;
    --cyber-black: #08080c;
    --silver: #94a3b8;
}

.bg-cyber-black { background-color: var(--cyber-black); }
.text-silver { color: var(--silver); }
.text-violet { color: var(--violet-brand); }
.bg-soft-violet { background: rgba(139, 92, 246, 0.1); }

/* The Dashboard Window Container */
.dashboard-window {
    background: #0f111a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    max-width: 650px; /* Properly Sized */
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.dashboard-window1{
    margin: 0 auto;
    margin-left: 50%;

}

.dash-header { background: rgba(255, 255, 255, 0.02); }
.brand-dot { width: 8px; height: 8px; background: #22d3ee; border-radius: 50%; box-shadow: 0 0 10px #22d3ee; }

/* Financial Cards Fix */
.fin-card {
    padding: 24px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.fin-card:hover { transform: translateY(-5px) scale(1.02); }

.card-onyx {
    background: linear-gradient(145deg, #1e1e1e 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,255,255,0.05);
}

.card-gold {
    background: linear-gradient(145deg, #b89571 0%, #8c6e4d 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; }
.rotate-90 { transform: rotate(90deg); }

/* Analytics Strip */
.analytics-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-avatar-small {
    width: 28px; height: 28px; background: var(--violet-brand);
    border-radius: 50%; color: white; display: flex;
    align-items: center; justify-content: center; font-size: 0.7rem; font-weight: bold;
}

/* Micro Details */
.letter-spacing-1 { letter-spacing: 1.5px; }
.x-small { font-size: 0.7rem; }
.stat-mini { border-left: 2px solid var(--violet-brand); padding-left: 15px; }

/* --- Background Animation Layer --- */
.bg-animation-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1;
}

.glow-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    filter: blur(50px);
}

.pulse-1 { top: -10%; left: -5%; animation: floatGlow 15s infinite alternate; }
.pulse-2 { bottom: 10%; right: 0%; animation: floatGlow 12s infinite alternate-reverse; }

@keyframes floatGlow {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 100px) scale(1.2); }
}

/* --- Upgraded Right Side Animation --- */
.hero-engine-wrapper { perspective: 1200px; }

.shadow-neon-v2 {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.05);
    overflow: hidden; /* For scan line */
}

/* Glass Scan Animation */
.scan-line {
    position: absolute;
    top: -100%; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: scanMove 3s infinite linear;
}

@keyframes scanMove {
    0% { top: -100%; }
    100% { top: 150%; }
}

/* Floating Nodes */
.floating-node {
    position: absolute;
    width: 45px; height: 45px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    z-index: 6;
    animation: floatNode 4s infinite ease-in-out;
}

.node-up { top: 10%; right: 15%; animation-delay: 0s; }
.node-down { bottom: 15%; left: 10%; animation-delay: 2s; }

@keyframes floatNode {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Orbit Upgrade */
.money-orbit-v3 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; height: 450px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: rotate 25s linear infinite;
}

/* Progress Fill Glow */
.progress-fill-v2 {
    height: 100%; width: 89%;
    background: linear-gradient(90deg, #8b5cf6, #22d3ee);
    box-shadow: 0 0 15px #8b5cf6;
    border-radius: 10px;
    animation: progressGlow 2s infinite alternate;
}

@keyframes progressGlow {
    from { opacity: 0.8; box-shadow: 0 0 5px #8b5cf6; }
    to { opacity: 1; box-shadow: 0 0 20px #8b5cf6; }
}

.animate-pulse { animation: pulseText 1.5s infinite; }
@keyframes pulseText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- Success Ripple Animation --- */
.success-pop-v2 {
    position: relative;
    overflow: visible; /* Allows ripples to expand outside the box */
}

.success-ripple {
    position: absolute;
    top: 50%;
    left: 25px; /* Aligned with the success icon */
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: rippleWave 3s infinite;
}

.ripple-2 { animation-delay: 1s; }
.ripple-3 { animation-delay: 2s; }

@keyframes rippleWave {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/* --- Floating Background Elements --- */
.bg-animation-layer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.03; /* Subtle texture overlay */
    pointer-events: none;
}

/* Enhanced Scanning Line */
.scan-line {
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(139, 92, 246, 0.4),
        rgba(34, 211, 238, 0.4),
        transparent
    );
    filter: blur(2px);
}
/* --- White Hero Base --- */
.white-dynamic-hero {
    background: #ffffff;
    min-height: 80vh;
}

.dynamic-light-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px; /* Subtle Grid */
}

.light-orb {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}
.orb-1 { top: -20%; right: -10%; }
.orb-2 { bottom: -20%; left: -10%; }

/* --- Dual Dashboard Light Theme --- */
.dual-dash-container {
    position: relative;
    height: 450px;
    perspective: 1500px;
}

.white-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.payment-terminal-white {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* --- Settlement Pill Fix --- */
.settlement-pill-white {
    position: absolute;
    bottom: -20px;
    right: 50px;
    background: #ffffff;
    border: 1px solid #dcfce7;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.success-icon-circle {
    width: 30px; height: 30px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}

/* --- Animations & Accents --- */
.progress-container-light { height: 6px; background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.progress-fill-blue { height: 100%; width: 89%; background: #3b82f6; box-shadow: 0 0 10px rgba(59, 130, 246, 0.4); }

.btn-confirm-light {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    font-weight: 600;
}

.shadow-blue { box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }

.ripple-sonar {
    position: absolute;
    top: 50%; left: 22px;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: sonar 2s infinite;
}

@keyframes sonar {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.col-md-4{
    color: #c41ed7;
}
.dashboard-window2{
    align-items: end;
    justify-items: end;
}
/* --- Tech Section Styling --- */
.tech-bg-glow {
    position: absolute;
    top: 50%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 1;
}

/* Feature Cards */
.tech-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-card.active, .tech-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.08);
    transform: translateX(10px);
}

.tech-bullet-modern {
    width: 45px; height: 45px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #3b82f6;
    border: 1px solid #e2e8f0;
}

/* Terminal & SDK Icons */
.tech-visual-container {
    position: relative;
    padding: 40px;
}

.api-terminal-white {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    position: relative;
    z-index: 5;
}

.shadow-premium { box-shadow: 0 30px 60px rgba(0,0,0,0.06); }

/* SDK Icons Floating */
.sdk-icon {
    position: absolute;
    width: 50px; height: 50px;
    background: white;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-size: 1.5rem;
    color: #64748b;
    z-index: 6;
}
.sdk-ios { top: 0; left: 10%; }
.sdk-android { bottom: 0; right: 20%; color: #3ddc84; }
.sdk-react { top: 20%; right: 0; color: #61dbfb; }

/* Code Syntax Colors (Dark on Light) */
.c-comment { color: #94a3b8; font-style: italic; }
.c-func { color: #2563eb; }
.c-string { color: #0891b2; }
.c-keyword { color: #7c3aed; }
.c-num { color: #ea580c; }

/* Loader Line Animation */
.terminal-loader {
    height: 2px; width: 0;
    background: #3b82f6;
    position: absolute; bottom: 0; left: 0;
    animation: loadingLine 3s infinite ease-in-out;
}

@keyframes loadingLine {
    0% { width: 0; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0; left: 100%; }
}