/* Small interaction layer for the Hostinger static export. */
.home-hero-track {
  transition: transform 550ms ease;
  will-change: transform;
}

.static-mobile-nav {
  position: relative;
}

.static-mobile-nav > summary {
  list-style: none;
  cursor: pointer;
}

.static-mobile-nav > summary::-webkit-details-marker {
  display: none;
}

.static-mobile-panel {
  position: absolute;
  z-index: 100;
  top: 56px;
  right: 0;
  width: min(330px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(38, 49, 71, .2);
}

.static-mobile-panel nav {
  display: grid;
  margin-bottom: 16px;
}

.static-mobile-panel nav a {
  padding: 15px 5px;
  border-bottom: 1px solid var(--line);
  color: var(--purple-dark);
  font-size: 17px;
  font-weight: 700;
}

.static-mobile-panel .button {
  width: 100%;
}

.static-faq-item {
  border-bottom: 1px solid var(--line);
}

.static-faq-item summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  color: var(--purple-dark);
  font-size: 17px;
  font-weight: 800;
}

.static-faq-item summary::-webkit-details-marker {
  display: none;
}

.static-faq-icon {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 21px;
  transition: transform 200ms ease;
}

.static-faq-item[open] .static-faq-icon {
  transform: rotate(180deg);
}

.static-faq-answer {
  padding: 0 34px 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.static-not-found {
  width: min(680px, calc(100% - 40px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}

.static-not-found img {
  width: 210px;
  margin-bottom: 48px;
}

.static-not-found h1 {
  margin: 0 0 18px;
  color: var(--purple-dark);
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
}

.static-not-found > p:not(.eyebrow) {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-track {
    transition: none;
  }
}
