:root {
    --bvc-base: #0B0614;
    --bvc-surface: #161022;
    --bvc-berry: #FF2D78;
    --bvc-berry-dark: #E02068;
    --bvc-amber: #FFB020;
    --bvc-teal: #00C4B4;
    --bvc-white: #F5F0FA;
    --bvc-muted: #9B8FAD;
    --bvc-border: rgba(245, 240, 250, 0.12);

    --bvc-font-display: 'Outfit', system-ui, sans-serif;
    --bvc-font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    --bvc-section-padding: clamp(4rem, 8vw, 6rem);
    --bvc-container-max: 1140px;
    --bvc-header-height: 4.5rem;
    --bvc-sticky-cta-height: 4.25rem;
}

@keyframes bvc-fade-up {
    from {
        opacity: 0;
        transform: translateY(1.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bvc-pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 120, 0.35);
    }
    50% {
        box-shadow: 0 0 28px 6px rgba(255, 45, 120, 0.18);
    }
}

@keyframes bvc-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.bvc-animate-in {
    animation: bvc-fade-up 0.7s ease-out both;
}

.bvc-animate-in-delay {
    animation: bvc-fade-up 0.85s ease-out 0.15s both;
}

.bvc-container {
    width: 100%;
    max-width: var(--bvc-container-max);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.bvc-section {
    padding-block: var(--bvc-section-padding);
}

.bvc-section--dark {
    background: var(--bvc-base);
    color: var(--bvc-white);
}

.bvc-section--surface {
    background: var(--bvc-surface);
    color: var(--bvc-white);
}

.bvc-section--light {
    background: var(--bvc-white);
    color: var(--bvc-base);
}

.bvc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bvc-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--bvc-berry);
    color: var(--bvc-white);
    font-family: var(--bvc-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.bvc-skip-link:focus {
    top: 0;
    outline: 3px solid var(--bvc-amber);
    outline-offset: 2px;
}

.bestvitaminc-layout :is(a, button, summary, input, select, textarea):focus-visible {
    outline: 3px solid var(--bvc-amber);
    outline-offset: 3px;
}

.bestvitaminc-layout {
    scroll-padding-bottom: calc(var(--bvc-sticky-cta-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
    .bvc-animate-in,
    .bvc-animate-in-delay {
        animation: none;
    }

    .bvc-button:hover {
        transform: none;
    }

    .bvc-marquee__track {
        animation: none !important;
    }
}

/* Editorial funnel pages */
.bvc-editorial__grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 768px) {
    .bvc-editorial__grid {
        grid-template-columns: 1.4fr 0.8fr;
    }
}

.bvc-editorial__lead {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    color: var(--bvc-white);
    margin: 0 0 1.5rem;
}

.bvc-editorial__main p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bvc-muted);
    margin: 0 0 1.25rem;
}

.bvc-editorial__quote {
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
    border-left: 4px solid var(--bvc-berry);
    font-family: var(--bvc-font-display);
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    font-weight: 600;
    line-height: 1.45;
    color: var(--bvc-white);
}

.bvc-editorial__stats {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    background: var(--bvc-base);
    border: 1px solid var(--bvc-border);
    border-radius: 1rem;
    display: grid;
    gap: 1rem;
}

.bvc-editorial__stats li {
    font-size: 0.95rem;
    color: var(--bvc-muted);
}

.bvc-editorial__stats strong {
    display: block;
    font-family: var(--bvc-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bvc-berry);
    line-height: 1.1;
}

.bvc-formula-page__grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 900px) {
    .bvc-formula-page__grid {
        grid-template-columns: 1fr auto;
    }
}

.bvc-formula-page__copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bvc-muted);
    margin: 0 0 1.25rem;
}

.bvc-formula__list {
    margin: 1.5rem 0 0;
    padding-left: 1.25rem;
    color: var(--bvc-white);
    line-height: 1.8;
}

.bvc-page {
    padding-top: var(--bvc-header-height);
}

.bvc-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.25rem;
}
