/* =================== foundation-utilities.css =================== */
/* Cross-page utility selectors and attribute hooks. */

[x-cloak] {
  display: none !important;
}

[data-fx-glow] {
  position: relative;
  isolation: isolate;
}

[data-fx-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(199, 155, 96, 0.14),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

[data-fx-glow]:hover::before {
  opacity: 1;
}

[data-fx-glow] > * {
  position: relative;
  z-index: 1;
}

[data-fx-img-lift] img {
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
}

[data-fx-img-lift]:hover img {
  transform: scale(1.04);
  filter: brightness(1.02) saturate(1.05);
}

[hx-trigger="load"]:empty,
[hx-get]:empty {
  min-height: 80px;
  background: linear-gradient(
    90deg,
    rgba(248, 244, 237, 0.3),
    rgba(248, 244, 237, 0.7),
    rgba(248, 244, 237, 0.3)
  );
  background-size: 200% 100%;
  animation: hz-skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}

[data-fav-stat-num] {
  margin-right: 4px;
}

input[type="hidden"] {
  display: none;
}

[class*="stat"] strong,
[class*="kpi"] strong,
[class*="facts"] strong,
.premium-surface > div > strong + span,
.premium-surface > div > b + small {
  display: block;
}

[data-fx-parallax] {
  transform: translate3d(0, var(--parallaxY, 0px), 0);
  will-change: transform;
  transition: none;
}

[data-phone-reveal] {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

[data-fx-draw] path,
[data-fx-draw] circle,
[data-fx-draw] line {
  stroke-dasharray: 100%;
  stroke-dashoffset: 100%;
}

.hc-countup {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 920px) {
  section + section,
  .hc-sec + .hc-sec {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
