* {
  box-sizing: border-box;
}

.faq-page {
  min-height: 100vh;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.faq-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 28px 20px 44px;
}
.faq-home-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}
.faq-home-link:hover {
  color: #2F6FED;
}
.faq-header {
  margin-bottom: 44px;
}
.faq-kicker {
  margin: 0 0 18px;
  color: #2F6FED;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.faq-header h1 {
  margin: 0;
  font-size: clamp(52px, 12vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 600;
}
.faq-subheader {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}
.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  color: #fff;
  font-size: clamp(18px, 4.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-weight: 500;
  position: relative;
  padding-right: 34px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 24px;
  color: #2F6FED;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-answer {
  padding: 0 0 26px;
  max-width: 720px;
}
.faq-answer p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-footer {
  margin-top: 68px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.5;
}
.faq-footer strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .faq-shell {
    padding: 44px 32px 64px;
  }
  .faq-home-link {
    margin-bottom: 78px;
  }
  .faq-header {
    margin-bottom: 64px;
  }
  .faq-item summary {
    padding: 30px 0;
  }
  .faq-item summary::after {
    top: 30px;
  }
}
