/* 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; }
}

/* process natgeo — accent line, large icon cells (no colors) */
.process-natgeo__accent-line {
    width: 2.5rem;
    flex-shrink: 0;
}
.process-natgeo__icon-cell {
    aspect-ratio: 1 / 1;
    width: 8rem;
    height: 8rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-natgeo__icons {
    min-width: 0;
}
.process-natgeo__icons > * {
    min-width: 0;
}
.process-natgeo__icon {
    font-size: 3rem !important;
    line-height: 0 !important;
    width: auto;
    height: auto;
    display: inline-block;
}
@media (min-width: 768px) {
    .process-natgeo__icon {
        font-size: 3.75rem !important;
    }
}

/* whyus v30 — Y2K bold header with open benefit text blocks */

/* decorative gradient overlay — small-amplitude hue-rotate cycle (filter only, no color values) */
@keyframes whyus-honeycomb-hue {
    0%   { filter: hue-rotate(0deg); }
    50%  { filter: hue-rotate(10deg); }
    100% { filter: hue-rotate(0deg); }
}

.whyus-honeycomb__aurora {
    animation: whyus-honeycomb-hue 9s ease-in-out infinite;
}

/* icons-in-circles decorative field — fixed sizes, scattered positions */
.whyus-honeycomb__icon-dot {
    position: absolute;
}

.whyus-honeycomb__icon-dot--1 { width: 3.5rem;  height: 3.5rem;  top: 6%;    left: 8%; }
.whyus-honeycomb__icon-dot--2 { width: 2.75rem; height: 2.75rem; top: 18%;   right: 12%; }
.whyus-honeycomb__icon-dot--3 { width: 4rem;    height: 4rem;    bottom: 22%; left: 5%; }
.whyus-honeycomb__icon-dot--4 { width: 2.5rem;  height: 2.5rem;  bottom: 10%; right: 20%; }
.whyus-honeycomb__icon-dot--5 { width: 3rem;    height: 3rem;    top: 45%;   right: 4%; }

/* divider extends first (scaleX 0 -> 1) */
@keyframes whyus-honeycomb-line {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.whyus-honeycomb__divider {
    transform-origin: center;
    animation: whyus-honeycomb-line 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* text blocks — staggered fade-in after divider */
@keyframes whyus-honeycomb-block-in {
    from { opacity: 0; transform: translateY(0.75rem); }
    to   { opacity: 1; transform: translateY(0); }
}

.whyus-honeycomb__block {
    animation: whyus-honeycomb-block-in 420ms ease-out both;
}

.whyus-honeycomb__block:nth-child(2n + 1) { animation-delay: 520ms; }
.whyus-honeycomb__block:nth-child(2n)     { animation-delay: 620ms; }

@media (prefers-reduced-motion: reduce) {
    .whyus-honeycomb__aurora,
    .whyus-honeycomb__divider,
    .whyus-honeycomb__block {
        animation: none;
    }
}

/* faq magazine-spread — layout + motion (no colors) */
.faq-magazine-spread__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.faq-magazine-spread__logo-float {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28rem, 72vw);
  height: min(28rem, 72vw);
  transform: translate(-50%, -50%);
  color: var(--bs-primary);
  animation: faq-magazine-spread-logo-drift 20s ease-in-out infinite;
}

.faq-magazine-spread__logo-float svg,
.faq-magazine-spread__logo-float svg * {
  fill: currentColor;
  color: inherit;
}

.faq-magazine-spread__logo-float > * {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: faq-magazine-spread-logo-pulse 9s ease-in-out infinite;
}

@keyframes faq-magazine-spread-logo-drift {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
  }

  33% {
    transform: translate(-48%, -54%) rotate(3deg) scale(1.04);
  }

  66% {
    transform: translate(-52%, -48%) rotate(-2deg) scale(1.02);
  }
}

@keyframes faq-magazine-spread-logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.faq-magazine-spread__magazine {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-magazine-spread__spread {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-magazine-spread__spread--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-magazine-spread__spread:nth-child(1) {
  transition-delay: 0.05s;
}

.faq-magazine-spread__spread:nth-child(2) {
  transition-delay: 0.12s;
}

.faq-magazine-spread__spread:nth-child(3) {
  transition-delay: 0.19s;
}

.faq-magazine-spread__spread:nth-child(4) {
  transition-delay: 0.26s;
}

.faq-magazine-spread__spread:nth-child(5) {
  transition-delay: 0.33s;
}

.faq-magazine-spread__spread:nth-child(6) {
  transition-delay: 0.4s;
}

.faq-magazine-spread__ornament {
  width: 1.25rem;
  height: 1.25rem;
}

.faq-magazine-spread__text-justify {
  text-align: justify;
}

@media (max-width: 1024px) {
  .faq-magazine-spread__spread {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-magazine-spread__ornament {
    display: none;
  }

  .faq-magazine-spread__logo-float {
    width: min(20rem, 85vw);
    height: min(20rem, 85vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-magazine-spread__logo-float,
  .faq-magazine-spread__logo-float > * {
    animation: none;
  }

  .faq-magazine-spread__spread {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-magazine-spread__spread:nth-child(n) {
    transition-delay: 0s;
  }
}

