:root {
    --color-primary: #F8FAFC; /* Slate 50 - Light background */
    --color-accent: #10B981; /* Emerald 500 - Professional green */
    --color-secondary: #3B82F6; /* Blue 500 - Softer blue */
    --logo-height: 50px; /* Adjustable logo size */
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-primary);
    color: #1F2937; /* Gray 800 - Dark text on light bg */
}
/* Custom Green Transition Gradient for the Hero and buttons */
.hero-gradient-text {
    background-image: linear-gradient(90deg, #3B82F6, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.btn-gradient {
    background-image: linear-gradient(90deg, #3B82F6, #10B981);
    transition: all 0.3s ease-in-out;
}
.btn-gradient:hover {
    opacity: 0.95;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}
/* Style for the central "Canvas" mock */
.canvas-mock {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9); /* Clean white background */
}
/* Custom CSS to hide scrollbar while keeping scrolling functionality */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, and Opera */
}

/* ---------------------------------------------------- */
/* ----- Custom CSS for Scrolling Integrations Animation ----- */
/* ---------------------------------------------------- */
@keyframes scroll-left-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
@keyframes scroll-left-slow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.scrolling-integrations-row-1 {
    animation: scroll-left-fast 60s linear infinite; 
}
.scrolling-integrations-row-2 {
    animation: scroll-left-slow 90s linear infinite; 
}

/* Ensure the content is wide enough for the animation */
.scrolling-integrations-container {
    width: 200%; 
    display: flex;
    flex-direction: row; 
    gap: 1rem; 
}

/* ---------------------------------------------------- */
/* ----- Features Card specific styling from image ----- */
/* ---------------------------------------------------- */
.feature-card {
    background-color: #FFFFFF; 
    border: 1px solid #E5E7EB; 
    padding: 2.5rem; 
    border-radius: 1rem; 
    text-align: center; 
    transition: all 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.6); 
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
    transform: translateY(-4px);
}
.feature-card .icon {
    margin: 0 auto 1.5rem auto; 
    width: 4rem; 
    height: 4rem; 
    display: block; 
}
.feature-card h3 {
    font-size: 1.75rem; 
    line-height: 2.25rem;
    margin-bottom: 0.75rem;
    color: #111827;
}
.feature-card p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #6B7280; 
}

/* ---------------------------------------------------- */
/* ----- Registration/Login Page Styles (Updated) ----- */
/* ---------------------------------------------------- */
.input-field {
    width: 100%;
    padding: 0.75rem;
    background-color: #FFFFFF; /* White */
    border: 1px solid #D1D5DB; /* Gray 300 */
    border-radius: 0.5rem;
    color: #111827; /* Gray 900 */
}
.input-field:focus {
    outline: none;
    border-color: #10B981; /* Emerald 500 */
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
/* Style for displaying login errors */
#login-error {
    color: #F87171; /* Red 400 */
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
}
/* Style for displaying contact success/error */
#contact-status {
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
}

/* ---------------------------------------------------- */
/* ----- Live Dotted Line Animation (Data Flow) ----- */
/* ---------------------------------------------------- */
@keyframes dash-flow {
    from {
        stroke-dashoffset: 0;
    }
    /* The offset value should match the dasharray length for seamless looping */
    to {
        stroke-dashoffset: -16; 
    }
}

.data-flow-path {
    stroke: var(--color-accent); /* Emerald 500 */
    stroke-width: 3; /* Increased width for visibility */
    stroke-dasharray: 8 8; /* Dash length (8), space length (8) = 16 total length */
    fill: none;
    animation: dash-flow 2s linear infinite; /* Faster, linear flow */
    opacity: 0.6;
    transition: opacity 0.3s;
}
.data-flow-path:hover {
    opacity: 0.9;
}