.runit-faq-container {
  max-width: 770px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.runit-faq-body {
  padding-top: clamp(3.25rem, 5vw, 4.25rem);
}

.runit-faq-list {
  position: relative;
}

@property --runit-faq-panel-alpha {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --runit-faq-glow-alpha {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.runit-faq-item {
  --runit-faq-content-inset: clamp(20px, 2.2vw, 28px);
  --runit-faq-row-inset: 0px;
  --runit-faq-motion-duration: 920ms;
  --runit-faq-line-duration: 820ms;
  --runit-faq-motion-ease: cubic-bezier(0.2, 0.82, 0.18, 1);
  --runit-faq-panel-alpha: 0;
  --runit-faq-glow-alpha: 0;
  border: 1px solid rgba(46, 209, 244, 0);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 55, 112, calc(0.08 * var(--runit-faq-panel-alpha))) 0%,
    rgba(13, 55, 112, calc(0.28 * var(--runit-faq-panel-alpha))) 42%,
    rgba(13, 55, 112, calc(0.54 * var(--runit-faq-panel-alpha))) 100%
  );
  box-shadow: 0 20px 68px rgba(46, 209, 244, calc(0.12 * var(--runit-faq-glow-alpha)));
  position: relative;
  transition:
    --runit-faq-panel-alpha var(--runit-faq-motion-duration) var(--runit-faq-motion-ease),
    --runit-faq-glow-alpha var(--runit-faq-motion-duration) var(--runit-faq-motion-ease),
    border-color var(--runit-faq-motion-duration) var(--runit-faq-motion-ease),
    box-shadow var(--runit-faq-motion-duration) var(--runit-faq-motion-ease),
    height var(--runit-faq-motion-duration) var(--runit-faq-motion-ease);
}

.runit-faq-item.is-animating {
  overflow: hidden;
}

.runit-faq-item[open],
.runit-faq-item.is-opening,
.runit-faq-item.is-closing {
  border-radius: 6px;
}

@media (min-width: 768px) {
  .runit-faq-item::before,
  .runit-faq-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
  }

  .runit-faq-item::before {
    border-top: 1px solid rgba(46, 209, 244, 0.72);
    border-bottom: 1px solid rgba(46, 209, 244, 0.72);
    transform: scaleX(0.04);
    transform-origin: top;
    transition:
      opacity 260ms ease,
      transform var(--runit-faq-line-duration) var(--runit-faq-motion-ease);
  }

  .runit-faq-item::after {
    border-left: 1px solid rgba(46, 209, 244, 0.72);
    border-right: 1px solid rgba(46, 209, 244, 0.72);
    transform: scaleY(0);
    transform-origin: center;
    transition:
      opacity 240ms ease,
      transform var(--runit-faq-line-duration) var(--runit-faq-motion-ease) 130ms;
  }

  .runit-faq-item[open]::before,
  .runit-faq-item.is-opening::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .runit-faq-item[open]::after,
  .runit-faq-item.is-opening::after {
    opacity: 1;
    transform: scaleY(1);
  }

  .runit-faq-item.is-closing::before {
    opacity: 0;
    transform: scaleX(0.04);
    transition-delay: 120ms, 120ms;
  }

  .runit-faq-item.is-closing::after {
    opacity: 0;
    transform: scaleY(0);
    transition-delay: 0ms, 0ms;
  }

  .runit-faq-item summary,
  .runit-faq-item p {
    position: relative;
    z-index: 1;
  }
}

.runit-faq-item[open] {
  --runit-faq-panel-alpha: 1;
  --runit-faq-glow-alpha: 1;
  margin-left: calc(-1 * var(--runit-faq-content-inset));
  margin-right: calc(-1 * var(--runit-faq-content-inset));
  padding-left: var(--runit-faq-content-inset);
  padding-right: var(--runit-faq-content-inset);
  border: 1px solid rgba(46, 209, 244, 0);
}

.runit-faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 86px;
  padding: 22px var(--runit-faq-row-inset);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.28;
  list-style: none;
  transition: color 200ms ease, text-shadow 200ms ease;
}

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

.runit-faq-item summary:focus {
  outline: none;
}

.runit-faq-item summary:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(46, 209, 244, 0.7);
  outline-offset: 6px;
}

.runit-faq-item[open] summary:focus-visible {
  outline: none;
}

.runit-faq-item summary:hover,
.runit-faq-item[open] summary {
  color: #fff;
  text-shadow: 0 0 18px rgba(46, 209, 244, 0.14);
}

.runit-faq-item p {
  margin: 0;
  max-width: 680px;
  padding: 0 56px 28px var(--runit-faq-row-inset);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  line-height: 1.72;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 560ms ease 150ms,
    transform 680ms var(--runit-faq-motion-ease) 150ms;
}

.runit-faq-item[open].has-faq-controller.is-content-visible p,
.runit-faq-item[open].has-faq-controller:not(.is-animating):not(.is-closing) p,
.runit-faq-item[open]:not(.has-faq-controller):not(.is-closing) p {
  opacity: 1;
  transform: translateY(0);
}

.runit-faq-item[open]:not(.has-faq-controller):not(.is-closing) p {
  animation: runitFaqReveal 760ms var(--runit-faq-motion-ease) both;
}

@starting-style {
  .runit-faq-item[open]:not(.has-faq-controller):not(.is-closing) p {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.runit-faq-item p strong,
.runit-faq-item p a {
  color: #fff;
}

.runit-faq-item p a {
  text-decoration: underline;
  text-decoration-color: rgba(46, 209, 244, 0.5);
  text-underline-offset: 3px;
}

.runit-faq-icon {
  width: 30px;
  height: 30px;
  position: relative;
  flex: 0 0 30px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  transition:
    color 420ms ease,
    background 420ms ease,
    box-shadow 520ms ease,
    transform 620ms var(--runit-faq-motion-ease);
}

.runit-faq-icon::before,
.runit-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 560ms var(--runit-faq-motion-ease),
    opacity 360ms ease;
}

.runit-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.runit-faq-item summary:hover .runit-faq-icon {
  color: #2ED1F4;
  background: rgba(46, 209, 244, 0.08);
  box-shadow: 0 0 22px rgba(46, 209, 244, 0.16);
}

.runit-faq-item[open] .runit-faq-icon {
  color: #fff;
  background: rgba(46, 209, 244, 0.18);
  box-shadow: 0 0 26px rgba(46, 209, 244, 0.26);
  transform: rotate(180deg) scale(1.05);
  animation: none;
}

.runit-faq-item[open] .runit-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.runit-faq-item.is-closing summary {
  color: rgba(255, 255, 255, 0.62);
  text-shadow: none;
}

.runit-faq-item.is-closing {
  --runit-faq-panel-alpha: 0;
  --runit-faq-glow-alpha: 0;
  margin-left: calc(-1 * var(--runit-faq-content-inset));
  margin-right: calc(-1 * var(--runit-faq-content-inset));
  padding-left: var(--runit-faq-content-inset);
  padding-right: var(--runit-faq-content-inset);
  border: 1px solid rgba(46, 209, 244, 0);
  transition:
    --runit-faq-panel-alpha 520ms ease,
    --runit-faq-glow-alpha 440ms ease,
    border-color 520ms var(--runit-faq-motion-ease),
    box-shadow 520ms ease,
    height var(--runit-faq-motion-duration) var(--runit-faq-motion-ease);
}

.runit-faq-item.is-closing p {
  display: block;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 780ms ease,
    transform 860ms var(--runit-faq-motion-ease);
}

.runit-faq-item.is-closing .runit-faq-icon {
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  box-shadow: none;
  transform: rotate(0deg) scale(1);
  animation: none;
}

.runit-faq-item.is-closing .runit-faq-icon::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(1);
}

@keyframes runitFaqReveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes runitFaqConceal {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes runitFaqTogglePop {
  0% { transform: rotate(0deg) scale(0.84); }
  70% { transform: rotate(180deg) scale(1.14); }
  100% { transform: rotate(180deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .runit-faq-item,
  .runit-faq-item::before,
  .runit-faq-item::after,
  .runit-faq-item summary,
  .runit-faq-item p,
  .runit-faq-icon,
  .runit-faq-icon::before,
  .runit-faq-icon::after {
    animation: none !important;
    transition: none !important;
  }
}

html.reduce-animations .runit-faq-item,
html.reduce-animations .runit-faq-item::before,
html.reduce-animations .runit-faq-item::after,
html.reduce-animations .runit-faq-item summary,
html.reduce-animations .runit-faq-item p,
html.reduce-animations .runit-faq-icon,
html.reduce-animations .runit-faq-icon::before,
html.reduce-animations .runit-faq-icon::after {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 767px) {
  .runit-faq-item {
    --runit-faq-motion-duration: 640ms;
    --runit-faq-line-duration: 640ms;
  }

  .runit-faq-item,
  .runit-faq-item[open],
  .runit-faq-item.is-closing,
  html.faq-reduce-blue-glow .runit-faq-item[open],
  html.faq-reduce-blue-glow .runit-faq-item.is-closing,
  html.reduce-animations .runit-faq-item[open] {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: height var(--runit-faq-motion-duration) var(--runit-faq-motion-ease);
    will-change: auto;
  }

  .runit-faq-item[open]::before {
    display: none;
  }

  .runit-faq-item summary,
  .runit-faq-item summary:hover,
  .runit-faq-item[open] summary,
  .runit-faq-item.is-closing summary,
  html.faq-reduce-blue-glow .runit-faq-item summary:hover,
  html.faq-reduce-blue-glow .runit-faq-item[open] summary,
  html.reduce-animations .runit-faq-item summary:hover,
  html.reduce-animations .runit-faq-item[open] summary {
    text-shadow: none;
    transition: color 200ms ease;
  }

  .runit-faq-item summary:hover .runit-faq-icon,
  html.faq-reduce-blue-glow .runit-faq-item summary:hover .runit-faq-icon,
  html.reduce-animations .runit-faq-item summary:hover .runit-faq-icon {
    color: rgba(255, 255, 255, 0.68);
    background: transparent;
    box-shadow: none;
  }

  .runit-faq-item.is-opening .runit-faq-icon,
  .runit-faq-item[open]:not(.is-closing) .runit-faq-icon,
  html.faq-reduce-blue-glow .runit-faq-item[open]:not(.is-closing) .runit-faq-icon,
  html.reduce-animations .runit-faq-item[open]:not(.is-closing) .runit-faq-icon {
    color: #2ED1F4;
    background: transparent;
    box-shadow: none;
    transform: rotate(180deg) scale(1);
    animation: none;
  }

  .runit-faq-item.is-closing .runit-faq-icon {
    color: rgba(255, 255, 255, 0.68);
    background: transparent;
    box-shadow: none;
  }

  .runit-faq-icon {
    color: rgba(255, 255, 255, 0.68);
    transition:
      color 320ms ease,
      transform 520ms var(--runit-faq-motion-ease);
  }

  .runit-faq-item.is-closing p {
    transform: translateY(-6px);
    transition:
      opacity 520ms ease,
      transform 560ms var(--runit-faq-motion-ease);
  }
}

@media (max-width: 640px) {
  .runit-faq-item {
    --runit-faq-content-inset: 14px;
    --runit-faq-row-inset: 4px;
  }

  .runit-faq-container {
    width: min(100% - 48px, 770px);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .runit-faq-item summary {
    gap: 16px;
    min-height: 76px;
    padding: 20px 4px;
    font-size: 19px;
  }

  .runit-faq-item p {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0 16px 30px var(--runit-faq-row-inset);
    font-size: 16px;
    line-height: 1.66;
  }

  .runit-faq-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
