html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  overflow-y: visible;
}

.faq-page {
  --faq-scroll-offset: 110px;
  padding-top: 86px;
  background: radial-gradient(29.95% 3.57% at 50% 0%, #254CEF 0%, #FFFFFF 100%);
  background-size: 100% 2400px;
  background-repeat: no-repeat;
  background-position: center 86px;
  background-color: #fff;
  color: #01060f;
}
.faq-page [hidden] {
  display: none !important;
}
.faq-page__section {
  padding: 88px 0 72px;
}
.faq-page__title {
  margin: 0 0 36px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(0deg, rgba(1, 6, 15, 0.4) 18.67%, #01060F 79.45%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.faq-page__layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.06fr);
  gap: 32px;
  align-items: start;
}
.faq-page__contents-title, .faq-page__group-title {
  margin: 0 0 16px;
  color: #01060f;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}
.faq-page__contents-title {
  color: rgb(37, 76, 239);
}
.faq-page__contents {
  position: sticky;
  top: var(--faq-scroll-offset);
  max-height: calc(100vh - var(--faq-scroll-offset) - 24px);
  overflow-y: auto;
}
.faq-page__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-page__link {
  width: 100%;
  padding: 8px 16px;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: #01060f;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: start;
  transition: background-color 0.15s ease;
}
.faq-page__link:hover, .faq-page__link.active {
  background: rgb(235, 239, 254);
  color: #01060f;
}
.faq-page__link:focus-visible,
.faq-page .home-faq__button:focus-visible {
  outline: 2px solid #254cef;
  outline-offset: 3px;
}
.faq-page__content {
  min-width: 0;
  padding: 0;
}
.faq-page__search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  padding: 16px;
  border: 1px solid rgba(1, 6, 15, 0.1);
  border-radius: 12px;
  background: rgb(242, 242, 243);
  color: #575761;
}
.faq-page__search:focus-within {
  outline: 2px solid #254cef;
  outline-offset: 3px;
}
.faq-page__search-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.faq-page__search-input::placeholder {
  color: inherit;
  opacity: 1;
}
.faq-page__search-input:placeholder-shown {
  direction: inherit;
}
.faq-page__search-input:focus {
  border: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}
.faq-page__search-icon {
  flex: 0 0 24px;
}
.faq-page__groups {
  display: grid;
  gap: 32px;
}
.faq-page__group {
  min-width: 0;
  scroll-margin-top: var(--faq-scroll-offset);
}
.faq-page__empty {
  padding: 24px 16px;
  border: 1px solid rgba(1, 6, 15, 0.1);
  border-radius: 12px;
  color: #575761;
  font-size: 14px;
  text-align: center;
}
.faq-page .home-faq__accordion {
  max-width: none;
}
.faq-page .home-launch-cta {
  background: transparent;
}

html[data-theme=dark] .faq-page {
  background-color: #01060f;
  background-image: radial-gradient(29.95% 3.57% at 50% 0%, #254CEF 0%, #01060F 100%);
}
html[data-theme=dark] .faq-page .faq-page__title {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 18.67%, #FFFFFF 79.45%);
}
html[data-theme=dark] .faq-page .faq-page__group-title,
html[data-theme=dark] .faq-page .faq-page__link {
  color: #fff;
}
html[data-theme=dark] .faq-page .faq-page__contents-title {
  color: #8db5ff;
}
html[data-theme=dark] .faq-page .home-faq__button:not(.collapsed) {
  color: #8db5ff;
}
html[data-theme=dark] .faq-page .home-faq__icon-minus path {
  fill: #8db5ff;
}
html[data-theme=dark] .faq-page .faq-page__link:hover,
html[data-theme=dark] .faq-page .faq-page__link.active {
  background: rgba(95, 153, 255, 0.18);
}
html[data-theme=dark] .faq-page .faq-page__search {
  background: #101a2a;
  border-color: rgba(255, 255, 255, 0.15);
  color: #d1d1d6;
  color-scheme: dark;
}
html[data-theme=dark] .faq-page .faq-page__search-icon path {
  fill: currentColor;
}
html[data-theme=dark] .faq-page .faq-page__empty {
  border-color: rgba(255, 255, 255, 0.15);
  color: #d1d1d6;
}

@media (max-width: 991px) {
  .faq-page__layout {
    grid-template-columns: minmax(190px, 1fr) minmax(0, 2fr);
  }
}
@media (max-width: 767px) {
  .faq-page__section {
    padding: 72px 0 48px;
  }
  .faq-page__title {
    margin-bottom: 32px;
  }
  .faq-page__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .faq-page__contents {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .faq-page__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-page__link {
    width: auto;
  }
}
@media (max-width: 480px) {
  .th-header {
    min-height: var(--faq-header-height, 76px);
  }
  .faq-page {
    padding-top: 0;
    background-position: center top;
  }
  .faq-page__section {
    padding-top: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .faq-page__link {
    transition: none;
  }
}
