.text-outline-bg {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  color: transparent;
}
/* Distance = first segment width in px (set by script). Percent-based -50%
   is unreliable here (flex, fonts, subpixels) and leaves a blank gap. */
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-w, 0px)), 0, 0);
  }
}
.marquee-track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  max-width: none;
}
.marquee-track[data-marquee-ready] {
  animation: marquee-scroll 32s linear infinite;
}
.marquee-segment {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track[data-marquee-ready] {
    animation: none !important;
  }
}
.logo-nc-footer-svg {
  display: block;
  width: auto;
  height: 4rem;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .logo-nc-footer-svg {
    height: 5.5rem;
  }
}
@media (min-width: 1024px) {
  .logo-nc-footer-svg {
    height: 6.25rem;
  }
}
.nc-footer-letter {
  fill: none;
  stroke: url(#footerNcGrad);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}
.footer-nc-glow {
  position: relative;
  line-height: 0;
  animation: footer-nc-breathe 4.2s ease-in-out infinite;
}
.footer-forums-contacts {
  width: 100%;
}
.footer-forums-contacts__cols {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 2rem;
  align-items: start;
}
@media (min-width: 640px) {
  .footer-forums-contacts__cols {
    display: flex;
    justify-content: space-between;
    column-gap: 4rem;
  }
  .footer-forums-contacts__cols > div {
    width: auto;
    max-width: 20rem;
  }
}
@keyframes footer-nc-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.04));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.16)) drop-shadow(0 0 36px rgba(255, 255, 255, 0.08));
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-nc-glow {
    animation: none;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.1));
  }
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-trigger {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  font: inherit;
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.faq-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: -2px;
}
.faq-panel {
  overflow: hidden;
  height: 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-panel-content {
  padding-top: 0;
  padding-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
  .faq-panel {
    transition: none;
  }
  .faq-chevron {
    transition: transform 0.15s ease;
  }
}
.design-card {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.design-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.design-thumb img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.design-card:hover .design-thumb img {
  transform: scale(1.03);
}
