body {
    font-family: 'Poppins', sans-serif;
    background-color: #fafafa;
    /* Premium subtle grid pattern for visual depth */
    background-image:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, #ffffff, #f4f4f5);
    background-size: 24px 24px, 100% 100%;
}

/* Brand reel — em-based so it scales with font-size */
.brand-reel-container {
    height: 1em;
    line-height: 1;
    overflow: hidden;
    position: relative;
}

.brand-reel-track {
    display: flex;
    flex-direction: column;
    animation: brand-reel-spin 6s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.brand-reel-item {
    height: 1em;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Header reel — 2 items, up/down ping-pong */
@keyframes brand-reel-spin {
    0%, 40% {
        transform: translateY(0);
    }
    50%, 90% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* Hero reel — mirrors header reel, scales with hero font-size */
.hero-reel-container {
    height: 1.3em;
    overflow: hidden;
    position: relative;
}

.hero-reel-track {
    display: flex;
    flex-direction: column;
    animation: brand-reel-spin 6s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero-reel-item {
    height: 1.3em;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
