.page-faq {
  --faq-blue: var(--c-blue);
  --faq-green: var(--c-green);
  --faq-gold: var(--c-gold);
  --faq-space: var(--c-space);
  --faq-surface: var(--c-surface);
  --faq-surface-alt: var(--c-surface-alt);
  --faq-text-dim: var(--c-text-dim);
  --faq-skew: var(--skew);
  --faq-radius: 6px;
  background: var(--c-space);
  color: var(--c-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-faq .container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
}

.page-faq .page-hero-faq {
  position: relative;
  padding: 132px 0 0;
  background: linear-gradient(180deg, transparent 0%, var(--c-space) 78%);
}

.page-faq .page-hero-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(0, 191, 255, 0.04) 14px 15px, transparent 15px 30px),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(57, 255, 20, 0.03) 28px 29px, transparent 29px 58px);
  pointer-events: none;
  z-index: 0;
}

.page-faq .page-hero-faq > * {
  position: relative;
  z-index: 1;
}

.page-faq .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--faq-text-dim);
  margin-bottom: 24px;
}

.page-faq .breadcrumbs a {
  color: var(--faq-blue);
  text-decoration: none;
}

.page-faq .breadcrumbs a:hover {
  color: var(--faq-gold);
}

.page-faq .faq-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}

.page-faq .faq-hero-text {
  max-width: 720px;
}

.page-faq .page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--faq-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-faq .page-hero__kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--faq-green);
  transform: skewX(var(--faq-skew));
}

.page-faq .page-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
  text-transform: uppercase;
  transform: skewX(var(--faq-skew));
  position: relative;
  display: inline-block;
}

.page-faq .page-hero__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--faq-blue), var(--faq-green), var(--faq-gold));
  transform: skewX(var(--faq-skew));
}

.page-faq .page-hero__desc {
  color: var(--faq-text-dim);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 56em;
}

.page-faq .faq-hero-stats.hud-frame {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 18px;
  background: rgba(26, 26, 46, 0.92);
}

.page-faq .faq-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.page-faq .faq-stat__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-faq .faq-stat__num {
  font-family: var(--font-data);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.page-faq .faq-stat__num span {
  font-size: 0.9rem;
  font-weight: 400;
}

.page-faq .accent-blue {
  color: var(--faq-blue);
}

.page-faq .accent-green {
  color: var(--faq-green);
}

.page-faq .accent-gold {
  color: var(--faq-gold);
}

.page-faq .faq-hero-art {
  margin-top: 8px;
  border-radius: var(--faq-radius);
  overflow: hidden;
  position: relative;
}

.page-faq .faq-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.18), transparent 45%, rgba(255, 215, 0, 0.12));
  pointer-events: none;
}

.page-faq .faq-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-faq .faq-quicknav {
  margin-top: 40px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-faq .faq-quicknav__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--faq-text-dim);
  text-transform: uppercase;
}

.page-faq .faq-quicknav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-faq .faq-quicknav__list .btn {
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.page-faq .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--faq-radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.page-faq .btn--green {
  background: var(--faq-green);
  color: var(--faq-space);
}

.page-faq .btn--green:hover {
  background: #52ff2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.25);
}

.page-faq .btn--outline {
  border-color: var(--faq-blue);
  color: var(--faq-blue);
  background: transparent;
}

.page-faq .btn--outline:hover {
  background: rgba(0, 191, 255, 0.12);
  color: var(--faq-gold);
  border-color: var(--faq-gold);
}

.page-faq .faq-section {
  padding: 56px 0;
  position: relative;
}

.page-faq .faq-section--login {
  background: var(--faq-space);
  border-top: 2px solid rgba(0, 191, 255, 0.15);
  border-bottom: 2px solid rgba(0, 191, 255, 0.08);
}

.page-faq .faq-section--score {
  background: var(--faq-surface);
  border-top: 2px solid rgba(57, 255, 20, 0.18);
  border-bottom: 2px solid rgba(57, 255, 20, 0.1);
}

.page-faq .faq-section--history {
  background: var(--faq-surface-alt);
  border-top: 2px solid rgba(255, 215, 0, 0.18);
  border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.page-faq .faq-section--directory {
  background: linear-gradient(180deg, var(--faq-surface-alt) 0%, var(--faq-space) 100%);
  border-top: 2px solid rgba(0, 191, 255, 0.12);
}

.page-faq .faq-section__inner {
  position: relative;
}

.page-faq .faq-section--login::before,
.page-faq .faq-section--score::before,
.page-faq .faq-section--history::before,
.page-faq .faq-section--directory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, 0.03) 18px 19px, transparent 19px 38px), repeating-linear-gradient(45deg, transparent 0 36px, rgba(255, 255, 255, 0.02) 36px 37px, transparent 37px 74px);
  pointer-events: none;
}

.page-faq .faq-section__inner {
  z-index: 1;
}

.page-faq .faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.page-faq .faq-section__head .section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  margin: 0 0 6px;
  text-transform: uppercase;
  transform: skewX(var(--faq-skew));
  line-height: 1.1;
}

.page-faq .faq-section__desc {
  color: var(--faq-text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.page-faq .faq-section__index {
  font-family: var(--font-data);
  font-size: 3rem;
  line-height: 0.9;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  margin-top: 2px;
  flex-shrink: 0;
}

.page-faq .faq-section--login .faq-section__index {
  color: var(--faq-blue);
}

.page-faq .faq-section--score .faq-section__index {
  color: var(--faq-green);
}

.page-faq .faq-section--history .faq-section__index {
  color: var(--faq-gold);
}

.page-faq .faq-section--directory .faq-section__index {
  color: var(--faq-blue);
}

.page-faq .faq-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-faq .faq-section__body--score {
  flex-direction: column;
}

.page-faq .faq-section__body--history {
  flex-direction: column;
}

.page-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.page-faq .faq-item {
  background: rgba(26, 26, 46, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-width: 3px;
  border-radius: var(--faq-radius);
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease);
}

.page-faq .faq-section--login .faq-item {
  border-left-color: var(--faq-blue);
}

.page-faq .faq-section--score .faq-item {
  border-left-color: var(--faq-green);
}

.page-faq .faq-section--history .faq-item {
  border-left-color: var(--faq-gold);
}

.page-faq .faq-section--directory .faq-item {
  border-left-color: var(--faq-blue);
}

.page-faq .faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 46, 1);
}

.page-faq .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--c-text);
  user-select: none;
  transition: color var(--ease);
}

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

.page-faq .faq-item summary::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(255, 215, 0, 0.14);
  color: var(--faq-gold);
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transform: skewX(var(--faq-skew));
  transition: background var(--ease);
}

.page-faq .faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--faq-text-dim);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), color var(--ease);
  flex-shrink: 0;
}

.page-faq .faq-item[open] summary {
  color: var(--faq-gold);
}

.page-faq .faq-item[open] summary::before {
  background: rgba(255, 215, 0, 0.3);
}

.page-faq .faq-item[open] summary::after {
  color: var(--faq-gold);
  transform: rotate(45deg);
}

.page-faq .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows var(--ease), opacity var(--ease);
}

.page-faq .faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.page-faq .faq-answer {
  padding-inline: 18px;
}

.page-faq .faq-answer p {
  grid-row: 1 / -1;
  min-height: 0;
  margin: 0;
  padding: 2px 0 18px 38px;
  color: var(--faq-text-dim);
  font-size: 14px;
  line-height: 1.8;
}

.page-faq .faq-demo-img {
  position: relative;
  border-radius: var(--faq-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 191, 255, 0.3);
  background: var(--faq-surface);
  width: 100%;
  max-width: 400px;
  align-self: center;
}

.page-faq .faq-demo-img img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-faq .faq-demo-img .caption-v {
  position: absolute;
  right: 8px;
  top: 12px;
  background: rgba(26, 26, 46, 0.8);
  padding: 6px 4px;
}

.page-faq .caption-v {
  writing-mode: vertical-rl;
  font-size: 12px;
  color: var(--faq-text-dim);
  letter-spacing: 0.14em;
  border-left: 1px solid var(--faq-gold);
  padding-left: 8px;
  text-transform: uppercase;
}

.page-faq .faq-note-card {
  background: rgba(26, 26, 46, 0.9);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.page-faq .faq-note-card__tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-faq .faq-note-card__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  margin: 0;
  transform: skewX(var(--faq-skew));
}

.page-faq .faq-note-card__text {
  color: var(--faq-text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 4px;
}

.page-faq .faq-steps {
  background: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--faq-radius);
  padding: 22px 20px;
}

.page-faq .faq-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-faq .faq-steps__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-faq .faq-steps__num {
  font-family: var(--font-data);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--faq-gold);
  line-height: 1;
  min-width: 34px;
}

.page-faq .faq-steps__list p {
  margin: 0;
  color: var(--faq-text-dim);
  font-size: 14px;
  line-height: 1.7;
}

.page-faq .faq-steps__list strong {
  display: block;
  color: var(--c-text);
  font-size: 15px;
  margin-bottom: 2px;
}

.page-faq .faq-contact-card {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-faq .faq-contact-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.24), transparent 65%);
  pointer-events: none;
}

.page-faq .faq-contact-card__mark {
  position: absolute;
  right: 18px;
  bottom: 8px;
  font-family: var(--font-headline);
  font-size: 90px;
  color: rgba(0, 191, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

.page-faq .faq-contact-card__title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  margin: 0;
  transform: skewX(var(--faq-skew));
  z-index: 1;
}

.page-faq .faq-contact-card__text {
  color: var(--faq-text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 6px;
  z-index: 1;
}

.page-faq .faq-contact-card .btn {
  z-index: 1;
}

.page-faq .faq-crosslink {
  padding: 48px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-faq .faq-crosslink__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faq-text-dim);
}

.page-faq .faq-crosslink__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.page-faq .faq-crosslink__links a {
  color: var(--faq-blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--ease);
}

.page-faq .faq-crosslink__links a:hover {
  color: var(--faq-gold);
}

.page-faq .hud-frame {
  border: 1px solid rgba(57, 255, 20, 0.4);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-faq .panel--alt {
  background: var(--faq-surface-alt);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.page-faq .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .page-faq .container {
    padding-inline: 32px;
  }

  .page-faq .faq-hero-grid {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .page-faq .faq-hero-text {
    flex: 1 1 auto;
    max-width: 740px;
  }

  .page-faq .faq-hero-stats.hud-frame {
    flex: 1 1 300px;
    max-width: 380px;
    padding: 18px 22px;
  }

  .page-faq .faq-section__body--score {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-faq .faq-section__body--history {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-faq .faq-steps {
    max-width: 380px;
    flex-shrink: 0;
  }

  .page-faq .faq-note-card {
    max-width: 280px;
    align-self: stretch;
    justify-content: flex-start;
  }

  .page-faq .faq-contact-card {
    max-width: 300px;
    align-self: flex-start;
  }

  .page-faq .faq-list--score {
    flex: 1;
  }

  .page-faq .faq-demo-img {
    flex-shrink: 0;
  }

  .page-faq .faq-section {
    padding: 72px 0;
  }

  .page-faq .faq-section__body {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-faq .faq-demo-img {
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .page-faq .faq-demo-img {
    max-width: 400px;
  }

  .page-faq .faq-quicknav {
    flex-direction: row;
    align-items: center;
    margin-top: 48px;
  }

  .page-faq .faq-quicknav__list {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-faq [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-faq .faq-item summary,
  .page-faq .faq-item .faq-answer,
  .page-faq .btn {
    transition: none;
  }

  .page-faq .faq-item summary::after {
    transition: none;
  }
}
