/* Google Marketing Platform — full-page loading skeleton */

:root {
  --gmp-sk-base: #eceff1;
  --gmp-sk-mid: #dfe3e6;
  --gmp-sk-shine: #f8f9fa;
}

@keyframes gmp-sk-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes gmp-content-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gmp-sk__bone {
  display: block;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    var(--gmp-sk-base) 0%,
    var(--gmp-sk-mid) 40%,
    var(--gmp-sk-shine) 50%,
    var(--gmp-sk-mid) 60%,
    var(--gmp-sk-base) 100%
  );
  background-size: 200% 100%;
  animation: gmp-sk-shimmer 1.4s ease-in-out infinite;
}

.panel-loading .hercules-header,
.panel-loading main.gmp-page {
  visibility: hidden;
}

.panel-image-ready .hercules-header,
.panel-image-ready main.gmp-page {
  visibility: visible;
}

.panel-image-ready .hero-landing__text {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.panel-text-ready .hero-landing__text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  animation: gmp-content-in 0.35s ease;
}

.panel-image-ready:not(.panel-text-ready) .gmp-hero-text-sk {
  display: flex;
}

.panel-text-ready .gmp-hero-text-sk {
  display: none;
}

.gmp-nav-link-inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.gmp-nav-link-sk {
  display: none;
}

.panel-image-ready:not(.panel-text-ready) .gmp-nav-link-text {
  visibility: hidden;
}

.panel-image-ready:not(.panel-text-ready) .gmp-nav-link-sk {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 14px;
  margin-top: -7px;
  border-radius: 4px;
}

.panel-text-ready .gmp-nav-link-text {
  animation: gmp-content-in 0.35s ease;
}

.panel-text-ready .gmp-nav-link-sk {
  display: none !important;
}

.gmp-hero-text-sk {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.gmp-hero-text-sk__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 760px;
  padding: 0 32px;
}

.gmp-hero-text-sk__bone {
  display: block;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.28) 40%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.28) 60%,
    rgba(255, 255, 255, 0.18) 100%
  );
  background-size: 200% 100%;
  animation: gmp-sk-shimmer 1.4s ease-in-out infinite;
}

.gmp-hero-text-sk__bone--title {
  width: min(100%, 480px);
  height: 48px;
  border-radius: 8px;
}

.gmp-hero-text-sk__bone--sub {
  width: min(100%, 620px);
  height: 16px;
}

.gmp-hero-text-sk__bone--sub-short {
  width: min(100%, 520px);
  margin-top: -8px;
}

.gmp-hero-text-sk__bone--btn {
  width: min(100%, 320px);
  height: 44px;
  border-radius: 4px;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .gmp-hero-text-sk__bone--title {
    height: 56px;
  }

  .gmp-hero-text-sk__bone--sub {
    height: 18px;
  }
}

.gmp-sk {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  overflow: auto;
  transition: opacity 0.22s ease;
}

.panel-image-ready .gmp-sk {
  opacity: 0;
  pointer-events: none;
}

.gmp-sk__header {
  height: 56px;
  border-bottom: 1px solid #e8eaed;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

@media (min-width: 1300px) {
  .gmp-sk__header {
    height: 64px;
  }
}

.gmp-sk__header-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.gmp-sk__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.gmp-sk__bone--logo-icon {
  width: 74px;
  height: 24px;
  border-radius: 2px;
}

.gmp-sk__bone--logo-text {
  width: 148px;
  height: 22px;
}

.gmp-sk__nav {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}

@media (min-width: 1300px) {
  .gmp-sk__nav {
    display: flex;
  }
}

.gmp-sk__bone--nav {
  width: 108px;
  height: 14px;
}

.gmp-sk__bone--nav:nth-child(2) {
  width: 96px;
}

.gmp-sk__bone--nav:nth-child(3) {
  width: 72px;
}

.gmp-sk__bone--nav:nth-child(4) {
  width: 40px;
}

.gmp-sk__cta {
  display: none;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

@media (min-width: 1300px) {
  .gmp-sk__cta {
    display: flex;
  }
}

.gmp-sk__bone--cta {
  width: 72px;
  height: 14px;
}

.gmp-sk__hero {
  position: relative;
  min-height: calc(100vh - 56px);
  margin-top: 56px;
}

@media (min-width: 1300px) {
  .gmp-sk__hero {
    min-height: calc(100vh - 64px);
    margin-top: 64px;
  }
}

.gmp-sk__hero-media {
  position: absolute;
  inset: 0;
}

.gmp-sk__bone--hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
}

.gmp-sk__hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 32px 64px;
}

.gmp-sk__bone--hero-title {
  width: min(100%, 420px);
  height: 44px;
  border-radius: 6px;
}

.gmp-sk__bone--hero-sub {
  width: min(100%, 560px);
  height: 18px;
}

.gmp-sk__bone--hero-btn {
  width: 280px;
  height: 40px;
  border-radius: 4px;
  margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .gmp-sk__bone,
  .panel-image-ready .hercules-header,
  .panel-image-ready main.gmp-page,
  .panel-text-ready .hero-landing__text,
  .gmp-hero-text-sk__bone,
  .gmp-sk {
    animation: none;
    transition: none;
  }
}
