.page-faq {
  --faq-line: rgba(176, 184, 196, 0.24);
  --faq-line-strong: rgba(176, 184, 196, 0.38);
  --faq-grid-line: rgba(176, 184, 196, 0.08);
  --faq-hatch-bg: linear-gradient(180deg, rgba(30, 58, 95, 0.3), rgba(11, 15, 25, 0.72));
  max-width: 100%;
  overflow-x: clip;
  background-color: var(--c-deep);
  color: var(--c-gray);
  font-family: var(--font-body);
  line-height: 1.7;
}

.page-faq .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px 0 6px;
  font-size: 14px;
  color: var(--c-text-cold);
}

.page-faq .breadcrumbs a {
  color: var(--c-gray);
  text-decoration: none;
  transition: color var(--ease-fast);
}

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

.page-faq .breadcrumbs__sep {
  color: var(--c-text-cold);
}

.page-faq .breadcrumbs__current {
  color: var(--c-white);
}

.page-faq .faq-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(36px, 7vw, 76px) 0 42px;
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(46vw, 340px);
  height: min(30vw, 220px);
  background:
    linear-gradient(rgba(176, 184, 196, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 184, 196, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(135deg, transparent 10%, #000 92%);
  mask-image: linear-gradient(135deg, transparent 10%, #000 92%);
  pointer-events: none;
}

.page-faq .faq-hero__body {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-faq .faq-hero h1 {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--c-white);
}

.page-faq .faq-hero__lead {
  max-width: 640px;
  margin: 0 0 26px;
  font-size: 16px;
  color: var(--c-gray);
}

.page-faq .faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-faq .faq-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(0, 255, 135, 0.35);
  background: rgba(0, 255, 135, 0.08);
  color: var(--c-green-soft);
  font-size: 13px;
}

.page-faq .faq-hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 135, 0.25);
  animation: faq-breathe 2.4s ease-in-out infinite;
}

@keyframes faq-breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-faq .faq-search-help,
.page-faq .faq-hot,
.page-faq .faq-hatch-system,
.page-faq .faq-still-need {
  padding: clamp(40px, 6vw, 80px) 0;
}

.page-faq .faq-search-help {
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-search-help__frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--faq-line);
  background:
    linear-gradient(var(--faq-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--faq-grid-line) 1px, transparent 1px),
    linear-gradient(150deg, rgba(30, 58, 95, 0.55), rgba(11, 15, 25, 0.85));
  background-size: 32px 32px, 32px 32px, auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.page-faq .faq-search-help__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(0, 255, 135, 0.06) 14px 16px);
  mix-blend-mode: screen;
}

.page-faq .faq-search-help__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-search-help__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-faq .faq-search-help__content {
  position: relative;
  z-index: 1;
  padding: 28px 24px 32px;
}

.page-faq .faq-search-help__desc {
  margin: 12px 0 20px;
  max-width: 52ch;
  color: var(--c-gray);
}

.page-faq .faq-search-help__box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--faq-line-strong);
  color: var(--c-gray);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--ease-fast), background var(--ease-fast), box-shadow var(--ease-fast);
}

.page-faq .faq-search-help__box:hover,
.page-faq .faq-search-help__box:focus-visible {
  border-color: var(--c-orange);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.22);
  outline: none;
}

.page-faq .faq-search-help__glyph {
  flex: 0 0 auto;
  color: var(--c-orange);
}

.page-faq .faq-search-help__fake {
  flex: 1 1 auto;
  font-size: 15px;
  color: var(--c-text-cold);
}

.page-faq .faq-search-help__key {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--faq-line-strong);
  background: rgba(11, 15, 25, 0.6);
  color: var(--c-green);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.page-faq .faq-search-help__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--c-text-cold);
}

.page-faq kbd {
  display: inline-block;
  margin: 0 2px;
  padding: 1px 7px;
  border: 1px solid var(--faq-line-strong);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: rgba(11, 15, 25, 0.6);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.8;
}

.page-faq .faq-search-help__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--faq-line);
}

.page-faq .faq-search-help__quicklinks a {
  padding: 6px 12px;
  border: 1px solid var(--faq-line);
  color: var(--c-gray);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--ease-fast), border-color var(--ease-fast), background var(--ease-fast);
}

.page-faq .faq-search-help__quicklinks a:hover {
  color: var(--c-green);
  border-color: rgba(0, 255, 135, 0.5);
  background: rgba(0, 255, 135, 0.06);
}

.page-faq .faq-hot {
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-hot__head {
  max-width: 560px;
}

.page-faq .faq-hot h2,
.page-faq .faq-hatch-system h2,
.page-faq .faq-still-need h2 {
  margin: 6px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--c-white);
}

.page-faq .faq-hot__head p:last-child {
  margin-bottom: 28px;
}

.page-faq .faq-hot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-faq .faq-hot-card {
  position: relative;
  display: block;
  padding: 26px 24px 22px;
  background: linear-gradient(145deg, rgba(11, 15, 25, 0.85), rgba(30, 58, 95, 0.65));
  border: 1px solid var(--faq-line);
  border-left: 4px solid var(--c-orange);
  color: inherit;
  text-decoration: none;
  transition: transform var(--ease-fast), border-color var(--ease-fast), box-shadow var(--ease-fast);
}

.page-faq .faq-hot-card:hover,
.page-faq .faq-hot-card:focus-visible {
  transform: translateY(-4px);
  border-left-color: var(--c-green);
  border-color: rgba(0, 255, 135, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  outline: none;
}

.page-faq .faq-hot-card__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(0, 255, 135, 0.12);
  border: 1px solid rgba(0, 255, 135, 0.3);
  color: var(--c-green-soft);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-faq .faq-hot-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--c-white);
}

.page-faq .faq-hot-card p {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--c-gray);
}

.page-faq .faq-hot-card__more {
  color: var(--c-orange);
  font-size: 14px;
  font-weight: 600;
}

.page-faq .faq-hot-card:hover .faq-hot-card__more {
  color: var(--c-green);
}

.page-faq .faq-hatch-system {
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 58, 95, 0.4), transparent 32%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.4), rgba(10, 25, 48, 0.2));
  border-bottom: 1px solid var(--faq-line);
}

.page-faq .faq-hatch-system__head {
  max-width: 680px;
}

.page-faq .faq-hatch-system__head p:last-child {
  margin-bottom: 28px;
}

.page-faq .faq-hatch-system__tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.page-faq .faq-hatch-system__tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--faq-line);
  background: rgba(11, 15, 25, 0.7);
  color: var(--c-gray);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: color var(--ease-fast), border-color var(--ease-fast), background var(--ease-fast);
  scroll-snap-align: start;
}

.page-faq .faq-hatch-system__tab:hover,
.page-faq .faq-hatch-system__tab:focus-visible {
  color: var(--c-green);
  border-color: rgba(0, 255, 135, 0.55);
  background: rgba(0, 255, 135, 0.07);
  outline: none;
}

.page-faq .faq-hatch-system__tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.2);
}

.page-faq .faq-hatch-system__num {
  color: var(--c-orange);
  font-weight: 700;
}

.page-faq .faq-hatch-system__panels {
  position: relative;
  min-height: 200px;
  margin-top: 24px;
}

.page-faq .hatch-panel {
  position: relative;
  display: none;
  background:
    var(--faq-hatch-bg),
    repeating-linear-gradient(135deg, transparent 0 26px, rgba(0, 255, 135, 0.04) 26px 28px);
  border: 1px solid var(--faq-line);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.page-faq .hatch-panel:first-child {
  display: block;
}

.page-faq .hatch-panel:target {
  display: block;
}

.page-faq .hatch-panel:first-child:has(~ .hatch-panel:target) {
  display: none;
}

@supports not selector(:has(*)) {
  .page-faq .hatch-panel:target {
    display: block;
  }
}

.page-faq .hatch-panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 24px 8px;
}

.page-faq .hatch-panel__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-faq .hatch-panel__title svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--c-orange);
}

.page-faq .hatch-panel__code {
  margin: 0 0 4px;
  color: var(--c-text-cold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.page-faq .hatch-panel__title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--c-white);
}

.page-faq .hatch-panel__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--c-text-cold);
  font-size: 13px;
}

.page-faq .hatch-panel__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, 0.18);
}

.page-faq .hatch-panel__toggle {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 5px 10px;
  border: 1px solid var(--faq-line);
  background: rgba(11, 15, 25, 0.5);
  color: var(--c-gray);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color var(--ease-fast), border-color var(--ease-fast);
}

.page-faq .hatch-panel__toggle:hover {
  color: var(--c-green);
  border-color: rgba(0, 255, 135, 0.5);
}

.page-faq .hatch-panel__items {
  display: grid;
  gap: 0;
  padding: 10px 24px 24px;
}

.page-faq .hatch-panel__items .panel-fold {
  border-bottom: 1px solid rgba(176, 184, 196, 0.14);
}

.page-faq .hatch-panel__items .panel-fold:last-child {
  border-bottom: 0;
}

.page-faq .panel-fold__head {
  margin: 0;
}

.page-faq .panel-fold__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 6px;
  background: transparent;
  border: 0;
  color: var(--c-gray);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--ease-fast);
}

.page-faq .panel-fold__btn:hover {
  color: var(--c-orange);
}

.page-faq .panel-fold__sign {
  flex: 0 0 auto;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--faq-line-strong);
  background: rgba(11, 15, 25, 0.6);
  color: var(--c-orange);
}

.page-faq .panel-fold__sign::before,
.page-faq .panel-fold__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--ease-fast);
}

.page-faq .panel-fold__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-faq .panel-fold[data-open] .panel-fold__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-faq .panel-fold__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.42s var(--ease-slow), opacity 0.3s ease, padding 0.3s ease;
}

.page-faq .panel-fold__body p {
  margin: 0;
  padding: 0 8px 20px 44px;
  color: var(--c-gray);
  font-size: 15px;
}

.page-faq .panel-fold__body a {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .panel-fold__body a:hover {
  color: var(--c-green-soft);
}

.page-faq .panel-fold[data-open] .panel-fold__body {
  max-height: 1200px;
  opacity: 1;
}

.page-faq .faq-still-need__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9), rgba(30, 58, 95, 0.5));
  border: 1px solid var(--faq-line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-faq .faq-still-need__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 6px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-green));
}

.page-faq .faq-still-need__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-faq .faq-still-need__media img {
  width: 100%;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 135, 0.28);
}

.page-faq .faq-still-need__content {
  max-width: 560px;
}

.page-faq .faq-still-need__meta {
  margin: 14px 0 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--c-orange);
  background: rgba(11, 15, 25, 0.5);
  font-size: 14px;
}

.page-faq .faq-still-need__terms {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--c-text-cold);
}

.page-faq .faq-still-need__terms a {
  color: var(--c-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .faq-still-need__terms a:hover {
  color: var(--c-green);
}

@media (min-width: 768px) {
  .page-faq .faq-search-help__frame {
    grid-template-columns: 5fr 7fr;
  }

  .page-faq .faq-search-help__media {
    aspect-ratio: auto;
    min-height: 280px;
    border-bottom: 0;
    border-right: 1px solid var(--faq-line);
  }

  .page-faq .faq-search-help__content {
    padding: 36px 34px 40px;
  }

  .page-faq .faq-hot__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-faq .faq-still-need__card {
    grid-template-columns: auto 1fr;
    gap: 36px;
    padding: 40px 44px;
  }
}

@media (min-width: 1024px) {
  .page-faq .faq-hero {
    padding-top: clamp(56px, 8vw, 96px);
  }

  .page-faq .faq-hot__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .page-faq .faq-hatch-system__tabs {
    overflow: visible;
    flex-wrap: wrap;
  }

  .page-faq .faq-hatch-system__tab {
    padding: 14px 18px;
    font-size: 17px;
  }

  .page-faq .hatch-panel__items {
    padding: 14px 32px 32px;
  }

  .page-faq .hatch-panel__header {
    padding: 36px 32px 10px;
  }

  .page-faq .panel-fold__body p {
    padding-left: 48px;
  }
}
