/* Custom CSS Variables and Styles */
:root {
    --blue-gradient: linear-gradient(90deg, #4F8CFF 0%, #6A5CFF 100%);
    --shadow-card: 0 1px 3px 0 hsl(220 13% 91% / 0.1), 0 1px 2px 0 hsl(220 13% 91% / 0.06);
    --shadow-hover: 0 10px 25px -5px hsl(220 85% 55% / 0.1), 0 8px 10px -6px hsl(220 85% 55% / 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    cursor: auto;
}

a, button, .card:hover, [role="button"], .platform-button, .ecosystem-card {
    cursor: pointer;
}

.ecosystem-card {
    background: hsl(210 20% 98%);
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.ecosystem-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #cfe0ff;
}

.ecosystem-card .icon {
    transition: var(--transition-smooth);
}

.ecosystem-card:hover .icon {
    filter: drop-shadow(0 6px 14px hsl(217 91% 50% / 0.35));
    transform: translateY(-2px);
}

.hero-button {
    background: var(--blue-gradient);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    transition: var(--transition-smooth);
}

.hero-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(79, 140, 255, 0.4);
    transform: translateY(-2px);
}

.cta {
    background: var(--blue-gradient);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.cta:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(79, 140, 255, 0.4);
    transform: translateY(-2px);
}

.platform-button {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.platform-button:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px) scale(1.05);
    border-color: hsl(220 85% 55% / 0.3);
}

.metric-card {
    transition: var(--transition-smooth);
}

.metric-card:hover {
    background: linear-gradient(135deg, hsl(220 85% 55% / 0.05), hsl(220 85% 65% / 0.05));
    box-shadow: var(--shadow-hover);
}

.hero-title {
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-shape {
    position: absolute;
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
}

.interactive-icon {
    transition: transform 0.2s;
}

.interactive-icon:hover {
    transform: scale(1.1) rotate(3deg);
}

/* Lucide Icons as SVG */
.lucide {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
