/* intro v22 — Lavazza brutalist: blueprint grid, aurora sweep, outlined heading, progressive stagger */

/* Blueprint engineering-paper grid (colour from Tailwind text-*, lines via currentColor) */
.intro-blue__grid {
    background-image:
        repeating-linear-gradient(0deg, currentColor 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 28px);
    opacity: 0.16;
}

/* Aurora wave sweep horizontal */
.intro-blue__aurora {
    background-size: 200% 100%;
    opacity: 0.3;
    animation: intro-blue-aurora 7s ease-in-out infinite;
}
@keyframes intro-blue-aurora {
    0%, 100% { background-position: 0% 0%; }
    50%      { background-position: 100% 0%; }
}

/* Text-stroke outlined heading (hollow fill, stroke = the element's Tailwind colour) */
.intro-blue__title {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px currentColor;
    text-stroke: 2px currentColor;
    letter-spacing: -0.02em;
}

/* Progressive stagger reveal — pure CSS on the reliable [data-lane-item] attribute; always ends visible */
@keyframes intro-blue-rise {
    from { opacity: 0; transform: translateY(1.5rem); }
    to   { opacity: 1; transform: translateY(0); }
}
.intro-blue [data-lane-item] { animation: intro-blue-rise 500ms ease both; }
.intro-blue [data-lane-item]:nth-child(2) { animation-delay: 120ms; }
.intro-blue [data-lane-item]:nth-child(3) { animation-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    .intro-blue__aurora { animation: none; }
    .intro-blue [data-lane-item] { animation: none; }
}

.services__panel--lift {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services__panel--lift:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transform: translateY(-0.5rem);
}

.services__link--lift {
  transition: filter 0.2s ease;
}

.services__link--lift:hover {
  filter: brightness(1.1);
}


.gridview-versus__field--mb16 { margin-bottom: 4rem; }

.gridview-versus__stripe--mb12 { margin-bottom: 3rem; }

.gridview-versus__field--mt12 { margin-top: 3rem; }

/* Лише layout / рух; кольори теми — у Blade */
.socialproof-card-hover {
    transition:
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.socialproof__stat-value,
.socialproof__stat-label {
    transition: transform 0.3s ease, color 0.2s ease;
}

@media (hover: hover) {
    .socialproof-card-hover:hover {
        box-shadow: 0 22px 44px -18px rgba(15, 23, 42, 0.2);
    }

    .dark .socialproof-card-hover:hover {
        box-shadow: 0 22px 44px -14px rgba(0, 0, 0, 0.5);
    }

    .socialproof-card-hover:hover .socialproof__stat-value {
        transform: scale(1.08);
    }
}

@media (hover: hover) and (min-width: 640px) {
    .socialproof-card-hover--lift:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .socialproof-card-hover,
    .socialproof__stat-value,
    .socialproof__stat-label {
        transition: none;
    }

    .socialproof-card-hover:hover,
    .socialproof-card-hover:hover .socialproof__stat-value,
    .socialproof-card-hover--lift:hover {
        transform: none;
    }
}

/* Затримки анімацій частинок (без inline style) */
.socialproof__particle:nth-child(1) {
    animation-delay: 0.5s;
}

.socialproof__particle:nth-child(2) {
    animation-delay: 1s;
}

.socialproof__particle:nth-child(3) {
    animation-delay: 1.5s;
}

.socialproof__particle:nth-child(4) {
    animation-delay: 2s;
}

.socialproof__blob-soft:nth-child(1) {
    animation-delay: 1.2s;
}

.socialproof__blob-soft:nth-child(2) {
    animation-delay: 2.5s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(1) .socialproof__orb-card {
    animation-delay: 0s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(2) .socialproof__orb-card {
    animation-delay: 0.1s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(3) .socialproof__orb-card {
    animation-delay: 0.2s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(4) .socialproof__orb-card {
    animation-delay: 0.3s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(5) .socialproof__orb-card {
    animation-delay: 0.4s;
}

.socialproof__orbs-grid > .socialproof__orb-col:nth-child(6) .socialproof__orb-card {
    animation-delay: 0.5s;
}

.socialproof__min-shrink {
    min-width: 0;
}

@keyframes socialproof-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes socialproof-bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes socialproof-ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.socialproof__particle--pulse,
.socialproof__blob-soft--pulse {
    animation: socialproof-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.socialproof__particle--bounce,
.socialproof__blob-soft--bounce {
    animation: socialproof-bounce 1s infinite;
}

.socialproof__particle--ping {
    animation: socialproof-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .socialproof__particle--pulse,
    .socialproof__particle--bounce,
    .socialproof__particle--ping,
    .socialproof__blob-soft--pulse,
    .socialproof__blob-soft--bounce {
        animation: none;
    }
}

