body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    overflow-x: hidden;
}

/* Custom Utilities */
.tracking-tighter-custom { letter-spacing: -0.03em; }

/* Gradient Blobs */
.blob-bg {
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12), rgba(147, 51, 234, 0.04), transparent 60%);
    filter: blur(60px);
    z-index: -1;
}

.blob-footer {
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.08) 50%, rgba(147, 51, 234, 0.15) 100%);
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating UI Graphics styling */
.ui-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ui-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.15);
}

/* Subtle grid lines for charts */
.chart-grid {
    background-image: linear-gradient(to right, #f3f4f6 1px, transparent 1px),
                      linear-gradient(to bottom, #f3f4f6 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Icon containers (for rev-ops page) */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
}

/* Connector arrows (for rev-ops page) */
.connector-arrow {
    color: #9ca3af;
}
