:root {
  --page-ink: #17131b;
  --page-muted: #6f6675;
  --page-line: #e7dfe9;
  --page-purple: #9345c2;
  --page-purple-dark: #57206f;
  --page-soft: #f7f2f9;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  color: var(--page-ink);
  background: #fcfafc;
  font:
    16px/1.7 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
.page-skip {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 300;
  padding: 10px 14px;
  color: #fff;
  background: #17131b;
  border-radius: 10px;
  transform: translateY(-150%);
}
.page-skip:focus {
  transform: none;
}
.page-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(224, 215, 227, 0.82);
  background: rgba(252, 250, 252, 0.88);
  backdrop-filter: blur(18px);
}
.page-header-inner {
  width: min(calc(100% - 40px), var(--page-width));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.page-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-ink);
  font-size: 1.25rem;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.035em;
}
.page-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(113, 48, 161, 0.22);
}
.page-brand-light {
  color: #fff;
}
.page-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-nav a {
  padding: 10px 13px;
  border-radius: 11px;
  color: #514756;
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}
.page-nav a:hover,
.page-nav a[aria-current="page"] {
  color: var(--page-purple-dark);
  background: #f0e3f6;
}
.page-login {
  color: #fff !important;
  background: linear-gradient(135deg, #9b4dca, #7130a1) !important;
}
.page-menu {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #17131b;
  cursor: pointer;
}
.page-hero {
  overflow: hidden;
  position: relative;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 80% 0, rgba(155, 77, 202, 0.22), transparent 34%),
    linear-gradient(150deg, #211724, #4d1b68);
  color: #fff;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.page-hero-inner {
  width: min(calc(100% - 40px), var(--page-width));
  margin: auto;
  position: relative;
  z-index: 1;
}
.page-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #dba6f6;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.page-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e2d7e6;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.page-meta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-meta span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e9e1ec;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
}
.page-layout {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
  padding: 72px 0 110px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.page-toc {
  position: sticky;
  top: 106px;
  max-height: calc(100vh - 130px);
  overflow: auto;
}
.page-toc strong {
  display: block;
  margin-bottom: 12px;
  color: #302735;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page-toc a {
  display: block;
  padding: 7px 12px;
  border-left: 2px solid var(--page-line);
  color: var(--page-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}
.page-toc a:hover,
.page-toc a.active {
  border-color: var(--page-purple);
  color: var(--page-purple-dark);
  background: #f8f2fa;
}
.page-content {
  min-width: 0;
}
.page-content > section {
  margin-bottom: 64px;
  scroll-margin-top: 110px;
}
.page-content h2 {
  margin: 0 0 22px;
  color: #241b28;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.page-content h3 {
  margin: 30px 0 9px;
  color: #36293b;
  font-size: 1.14rem;
  line-height: 1.3;
}
.page-content p,
.page-content li {
  color: #504754;
}
.page-content p {
  margin: 0 0 14px;
}
.page-content ul,
.page-content ol {
  padding-left: 22px;
}
.page-content li + li {
  margin-top: 7px;
}
.page-content a {
  color: #7130a1;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.page-card {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid var(--page-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(47, 29, 55, 0.06);
}
.page-card > :first-child {
  margin-top: 0;
}
.page-card > :last-child {
  margin-bottom: 0;
}
.page-note {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--page-purple);
  border-radius: 0 14px 14px 0;
  background: #f5eafb;
}
.page-note strong {
  color: var(--page-purple-dark);
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.page-grid .page-card {
  margin: 0;
}
.legal-address {
  font-style: normal;
}
.legal-address span {
  display: block;
}
.legal-representative,
.privacy-contact {
  margin-top: 18px !important;
}
.legal-unavailable {
  min-height: 100vh;
  display: grid;
  align-items: center;
}
.legal-unavailable a {
  color: #fff;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
}
.legal-table th,
.legal-table td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--page-line);
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  width: 34%;
  color: #302735;
  font-size: 0.88rem;
}
.page-footer {
  padding: 54px 0 30px;
  color: #d8cddd;
  background: #19151d;
}
.page-footer-inner {
  width: min(calc(100% - 40px), var(--page-width));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
}
.page-footer p {
  max-width: 480px;
  margin: 14px 0 0;
  color: #a99dab;
}

.page-footer .footer-email {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.page-footer .footer-email:hover {
  color: #fff;
  text-decoration: underline;
}
.page-footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
}
.page-footer-links a {
  color: #e9e1eb;
  text-decoration: none;
}
.page-footer-bottom {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #928697;
  font-size: 0.82rem;
}

.manual-intro {
  position: relative;
  overflow: hidden;
  padding: 64px 0 46px;
  color: #fff;
  background: #17131b;
}
.manual-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}
.manual-intro-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -390px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 99, 229, 0.46),
    rgba(113, 48, 161, 0.1) 48%,
    transparent 70%
  );
}
.manual-intro-inner {
  width: min(calc(100% - 40px), var(--page-width));
  min-height: 260px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 50px;
}
.manual-intro-copy {
  max-width: 820px;
}
.manual-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.manual-label span,
.manual-label i {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.manual-label span {
  color: #2a1731;
  background: #dca3fa;
}
.manual-label i {
  color: #cbbdce;
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.manual-intro h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.manual-intro h1 em {
  color: #c877ed;
  font-style: normal;
}
.manual-intro-copy > p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #cfc3d3;
  font-size: 1.08rem;
}
.manual-orbit {
  width: 224px;
  height: 224px;
  margin-left: auto;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(196, 111, 237, 0.1),
    0 0 90px rgba(155, 77, 202, 0.14);
}
.manual-orbit::before,
.manual-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}
.manual-orbit::before {
  inset: 25px;
}
.manual-orbit::after {
  inset: 56px;
}
.manual-orbit > span {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #b75ee2, #7130a1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  font-weight: 900;
  letter-spacing: -0.05em;
}
.manual-orbit i {
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  background: #d89af4;
  box-shadow: 0 0 18px #d89af4;
}
.manual-orbit i:nth-of-type(1) {
  top: 23px;
  left: 62px;
}
.manual-orbit i:nth-of-type(2) {
  right: 20px;
  bottom: 78px;
}
.manual-orbit i:nth-of-type(3) {
  left: 27px;
  bottom: 48px;
}
.manual-command-wrap {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 26px auto 0;
  position: relative;
  z-index: 4;
}
.manual-search {
  width: 100%;
  margin: auto;
  padding: 9px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
}
.manual-search span {
  padding: 0 10px;
  color: var(--page-purple);
  font-size: 1.25rem;
}
.manual-search input {
  width: 100%;
  min-width: 0;
  padding: 13px 10px;
  border: 0;
  outline: 0;
  color: var(--page-ink);
  background: transparent;
}
.manual-search kbd {
  margin-right: 7px;
  padding: 5px 8px;
  border: 1px solid #e0d6e4;
  border-bottom-width: 3px;
  border-radius: 7px;
  color: #86788c;
  background: #faf7fb;
  font:
    700 0.63rem/1 ui-monospace,
    monospace;
}
.manual-search button {
  padding: 11px 15px;
  border: 0;
  border-radius: 11px;
  color: #5c5060;
  background: #f3edf5;
  cursor: pointer;
}
.manual-quicklinks {
  min-height: 34px;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #968a9a;
  font-size: 0.78rem;
}
.manual-quicklinks a {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #d5c9da;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}
.manual-quicklinks a:hover {
  color: #fff;
  border-color: rgba(216, 154, 244, 0.55);
}
.manual-results {
  min-height: 22px;
  margin: 7px 0 0;
  color: #988c9c;
  font-size: 0.78rem;
}
.manual-chapter[hidden] {
  display: none;
}
.manual-step {
  margin: 17px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}
.manual-step > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--page-purple);
  font-size: 0.82rem;
  font-weight: 850;
}
.manual-step p {
  padding-top: 2px;
}
.role-chip {
  display: inline-block;
  margin: 3px 4px 3px 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: #63307d;
  background: #f0e3f7;
  font-size: 0.75rem;
  font-weight: 760;
}
.manual-empty {
  display: none;
  padding: 28px;
  border: 1px dashed #cdbfd2;
  border-radius: 18px;
  color: var(--page-muted);
  text-align: center;
}
.manual-empty.visible {
  display: block;
}
.manual-page .page-layout {
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 34px;
  padding-top: 48px;
}
.manual-page .page-toc {
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(155, 77, 202, 0.22),
      transparent 34%
    ),
    #201a23;
  box-shadow: 0 18px 50px rgba(34, 22, 39, 0.14);
}
.manual-page .page-toc strong {
  padding: 0 11px 10px;
  color: #c99be0;
}
.manual-page .page-toc a {
  margin: 2px 0;
  padding: 7px 11px;
  border: 0;
  border-radius: 9px;
  color: #bfb3c3;
}
.manual-page .page-toc a:hover,
.manual-page .page-toc a.active {
  color: #fff;
  background: rgba(191, 103, 233, 0.18);
}
.manual-page .page-content > section {
  margin-bottom: 22px;
  padding: 38px 42px;
  border: 1px solid #e9e1eb;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 15px 46px rgba(47, 29, 55, 0.055);
}
.manual-page .page-content > section::before {
  content: "";
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  display: block;
  border-radius: 99px;
  background: linear-gradient(90deg, #9b4dca, #d797f2);
}
.manual-page .page-content > .manual-empty {
  padding: 28px;
}
.manual-page .page-content > .manual-empty::before {
  display: none;
}
.manual-page .page-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.manual-page .page-card {
  background: #fbf8fc;
  box-shadow: none;
}
.manual-footer {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .page-nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 20px;
    right: 20px;
    padding: 10px;
    border: 1px solid var(--page-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(40, 22, 48, 0.16);
  }
  .page-nav.open {
    display: grid;
  }
  .page-menu {
    display: block;
  }
  .page-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
  }
  .page-toc {
    position: static;
    max-height: none;
    padding: 18px;
    border: 1px solid var(--page-line);
    border-radius: 18px;
    background: #fff;
    columns: 2;
  }
  .page-toc strong {
    column-span: all;
  }
  .page-toc a {
    break-inside: avoid;
  }
  .manual-intro-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .manual-orbit {
    display: none;
  }
  .manual-page .page-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .manual-page .page-toc {
    position: static;
    max-height: none;
    columns: 2;
  }
}

@media (max-width: 620px) {
  .page-header-inner,
  .page-hero-inner,
  .page-layout,
  .page-footer-inner,
  .page-footer-bottom {
    width: min(calc(100% - 28px), var(--page-width));
  }
  .page-hero {
    padding: 66px 0 58px;
  }
  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    overflow-wrap: anywhere;
  }
  .page-layout {
    padding-bottom: 76px;
  }
  .page-toc {
    columns: 1;
  }
  .page-grid {
    grid-template-columns: 1fr;
  }
  .page-card {
    padding: 19px;
    border-radius: 16px;
  }
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table th {
    padding-bottom: 2px;
    border-bottom: 0;
  }
  .legal-table td {
    padding-top: 2px;
  }
  .page-footer-inner {
    grid-template-columns: 1fr;
  }
  .page-footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .manual-search {
    width: calc(100% - 28px);
  }
  .manual-intro {
    padding: 44px 0 30px;
  }
  .manual-intro-inner,
  .manual-command-wrap {
    width: calc(100% - 28px);
  }
  .manual-intro h1 {
    font-size: clamp(2.8rem, 14vw, 3.75rem);
  }
  .manual-intro-copy > p {
    font-size: 0.98rem;
  }
  .manual-command-wrap {
    margin-top: 24px;
  }
  .manual-search {
    width: 100%;
  }
  .manual-search kbd,
  .manual-search button {
    display: none;
  }
  .manual-quicklinks {
    display: none;
  }
  .manual-page .page-toc {
    columns: 1;
  }
  .manual-page .page-content > section {
    padding: 26px 20px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
