*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  margin: 30px 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
}

button,
[role=button] {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1,
.h1 {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 16px;
}

h2,
.h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  margin: 48px 0 16px;
}
h2:first-child,
.h2:first-child {
  margin-top: 0;
}

h3,
.h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 40px 0 16px;
  font-weight: 700;
}

h4,
.h4 {
  margin: 40px 0 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}

p {
  line-height: 1.6;
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 24px;
    line-height: 1.4;
  }
  h2,
  .h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  p {
    line-height: 1.4;
  }
}
a {
  color: #42FFA7;
  transition: all 0.3s;
}
a:hover {
  color: #5EFFB4;
}

.post-entry {
  width: 100%;
}
.post-entry .is-style-block-bg,
.post-entry .wp-block-group {
  background: #1F2028;
  border-top: 3px solid #42FFA7;
  padding: 60px 32px;
  border-radius: 16px;
  margin-bottom: 40px;
}
.post-entry .has-text-align-left {
  text-align: left !important;
}
.post-entry .has-text-align-right {
  text-align: right !important;
}
.post-entry .has-text-align-center {
  text-align: center !important;
}
.post-entry ol {
  margin: 16px 0;
  padding: 0;
  counter-reset: li;
  list-style: none;
}
.post-entry ol li {
  margin-bottom: 16px;
  counter-increment: li;
  position: relative;
  padding-left: 38px;
}
.post-entry ol li:before {
  content: counter(li) "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #42FFA7;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
}
.post-entry ul {
  margin: 16px 0;
  padding: 0;
  list-style: none;
}
.post-entry ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}
.post-entry ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  border-radius: 50%;
  background: #42FFA7;
  height: 8px;
  width: 8px;
}
.post-entry .wp-block-table {
  overflow: hidden;
  max-width: 100%;
  border-radius: 16px;
  margin: 16px 0;
}
.post-entry .wp-block-table table {
  border-collapse: collapse;
  min-width: 100%;
}
.post-entry .wp-block-table td,
.post-entry .wp-block-table th {
  padding: 20px 24px;
  line-height: 1.4;
  font-size: 15px;
  border: none;
  vertical-align: top;
  text-align: left;
}
.post-entry .wp-block-table th,
.post-entry .wp-block-table td:first-child {
  font-weight: 700;
  color: #fff;
  width: 280px;
}
.post-entry .wp-block-table td:last-child {
  border-left: 2px solid #42FFA7;
  color: rgba(159, 159, 159, 0.8);
}
.post-entry .wp-block-table tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}
.post-entry .wp-block-image {
  margin: 16px 0;
}
.post-entry .wp-block-image img {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .post-entry .wp-block-table {
    overflow-x: auto;
  }
  .post-entry .wp-block-table td,
  .post-entry .wp-block-table th {
    padding: 8px 12px;
  }
  .post-entry .is-style-block-bg,
  .post-entry .wp-block-group {
    width: auto;
    margin-right: -15px;
    margin-left: -15px;
    padding: 40px 16px;
    margin-bottom: 40px;
  }
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.content-section--right .content-section--media {
  order: 2;
}
.content-section--media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.content-section--text {
  color: rgba(159, 159, 159, 0.8);
}
@media (max-width: 1024px) {
  .content-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .content-section--right .content-section--media {
    order: 0;
  }
}

.bg-cover {
  background-size: cover;
  background-position: center;
}

.bg-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.obj-cover {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.obj-contain {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
}

.btn-accent,
.btn-secondary,
.btn-outline {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 100px;
  z-index: 1;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-accent {
  color: #0D0D11;
  background: #42FFA7;
  border: 1px solid #42FFA7;
}
.btn-accent:hover {
  background: #5EFFB4;
  border-color: #5EFFB4;
  color: #0D0D11;
}

.btn-secondary {
  color: #0D0D11;
  background: #42FFA7;
  border: 1px solid #42FFA7;
}
.btn-secondary:hover {
  background: #5EFFB4;
  border-color: #5EFFB4;
  color: #0D0D11;
}

.btn-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-outline:hover {
  border-color: #42FFA7;
  color: #42FFA7;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #1F2028;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header--top-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}
.header--logo {
  display: inline-flex;
  flex-shrink: 0;
}
.header--logo img {
  height: 32px;
  width: auto;
}
.header--actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header--login {
  border-color: rgba(255, 255, 255, 0.12);
}
.header--login:hover {
  border-color: #42FFA7;
  color: #42FFA7;
}
.header--bottom {
  padding: 0 0 16px;
}
.header--menu {
  display: flex;
  justify-content: center;
}
.header--menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header--menu li {
  display: flex;
}
.header--menu .menu-item-has-children {
  position: relative;
}
.header--menu .menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-top: -3px;
}
.header--menu .menu-item-has-children:hover .sub-menu {
  display: flex;
}
.header--menu .sub-menu {
  position: absolute;
  flex-direction: column;
  gap: 4px;
  top: 100%;
  left: 0;
  background: #1F2028;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px;
  width: 200px;
  display: none;
  z-index: 10;
}
.header--menu a {
  color: #fff;
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  line-height: 1.4;
  white-space: nowrap;
}
.header--menu a:hover {
  color: #42FFA7;
}
.header--menu .menu-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.header--menu-inner {
  display: inline-flex;
  background: #1F2028;
  border-radius: 100px;
  padding: 14px 32px;
  width: 100%;
  justify-content: center;
}
.header--menu-open {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #42FFA7;
  flex-shrink: 0;
}
.header--menu-open span {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  border-radius: 2px;
}
.header--menu-open.menu-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header--menu-open.menu-active span:nth-child(2) {
  opacity: 0;
}
.header--menu-open.menu-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .header--actions {
    flex-basis: 100%;
    gap: 12px;
  }
  .header--login, .header--register {
    flex: 1;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header--bottom {
    padding: 0;
  }
  .header--menu-inner {
    display: block;
    background: none;
    padding: 0;
  }
  .header--menu {
    display: none;
    position: fixed;
    left: 0;
    top: 88px;
    width: 100%;
    background: #1F2028;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1000;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    padding: 25px 15px;
  }
  .header--menu li {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .header--menu.menu-active {
    display: block;
  }
  .header--menu .menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: 100%;
  }
  .header--menu .menu-item-has-children {
    width: 100%;
  }
  .header--menu .menu-item-has-children > a:after {
    margin-left: auto;
  }
  .header--menu .sub-menu {
    display: none;
    position: relative;
    top: auto;
    width: 100%;
    border: none;
    background: transparent;
    padding: 4px 0 4px 16px;
  }
  .header--menu .sub-menu.submenu-active {
    display: flex;
  }
  .header--menu a {
    padding: 10px 0;
    width: 100%;
  }
  .header--menu-open {
    display: flex;
  }
  .header--logo img {
    height: 28px;
    width: auto;
  }
}

.footer {
  background: #1F2028;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 60px 0 32px;
}
.footer--top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}
.footer--left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.footer--logo img {
  height: 40px;
  width: auto;
}
.footer--email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.footer--email:hover {
  color: #42FFA7;
}
.footer--social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer--social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1F2028;
  color: #fff;
}
.footer--social-item:hover {
  background: #42FFA7;
}
.footer--menus {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.footer--menu {
  min-width: 140px;
}
.footer--menu-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer--menu-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer--menu-inner a {
  font-size: 14px;
  color: rgba(159, 159, 159, 0.72);
}
.footer--menu-inner a:hover {
  color: #42FFA7;
}
.footer--payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.footer--payment-item img {
  height: 26px;
  width: auto;
}
.footer--badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}
.footer--badge-item img {
  height: 36px;
  width: auto;
}
.footer--info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer--legal {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(159, 159, 159, 0.5);
  max-width: 900px;
}
.footer--copyright {
  font-size: 12px;
  color: rgba(159, 159, 159, 0.5);
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 24px;
  }
  .footer--top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer--right {
    align-items: flex-start;
  }
  .footer--payments {
    justify-content: flex-start;
  }
  .footer--menus {
    gap: 24px;
  }
  .footer--info {
    flex-direction: column;
    gap: 12px;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.faq--item {
  background: #1F2028;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.faq--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.faq--arrow {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #42FFA7;
  border-bottom: 2px solid #42FFA7;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.faq--text {
  display: none;
  padding: 0 24px 20px;
  color: rgba(159, 159, 159, 0.8);
  line-height: 1.6;
}
.faq--item.active .faq--arrow {
  transform: rotate(-135deg);
}
.faq--item.active .faq--text {
  display: block;
}

.hero {
  background: #1F2028;
  border-radius: 24px;
  padding: 40px;
}
.hero--row {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero--content {
  flex: 1;
}
.hero--title {
  margin-bottom: 16px;
  text-transform: uppercase;
  line-height: 1.15;
}
.hero--description {
  color: rgba(159, 159, 159, 0.85);
  margin-bottom: 24px;
}
.hero--image {
  flex: 1;
  max-width: 420px;
}
.hero--image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .hero {
    padding: 24px;
  }
  .hero--row {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .hero--image {
    max-width: 100%;
  }
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  padding: 40px 0 80px;
}
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    padding: 24px 0 40px;
  }
}
.content-grid--content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.toc {
  background: #1F2028;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 24px 28px;
}
.toc--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
}
.toc--title {
  font-weight: 700;
  font-size: 20px;
}
.toc--arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #42FFA7;
  border-bottom: 2px solid #42FFA7;
  transform: rotate(225deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.toc.-collapsed .toc--arrow {
  transform: rotate(45deg);
}
.toc.-collapsed .toc--list {
  display: none;
}
.toc--list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.toc--list::-webkit-scrollbar {
  display: none;
}
.toc--item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.toc--item:last-child {
  border-bottom: none;
}
.toc--item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(159, 159, 159, 0.85);
}
.toc--item a:hover {
  color: #42FFA7;
}
.toc--item-h3 {
  padding-left: 16px;
}
.toc--number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #42FFA7;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.sidebar-links {
  position: sticky;
  top: calc(152px + 24px);
  background: #1F2028;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-links--title {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 12px;
}
.sidebar-links--list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sidebar-links--item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sidebar-links--item:last-child {
  border-bottom: none;
}
.sidebar-links--item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(159, 159, 159, 0.85);
  font-size: 15px;
}
.sidebar-links--item a:hover {
  color: #42FFA7;
}
.sidebar-links--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #fff;
}
.sidebar-links--icon svg,
.sidebar-links--icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar-links--button {
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .sidebar-links {
    position: relative;
    top: auto;
  }
}

.error-404 {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error-404 span {
  margin-bottom: 24px;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 1024px) {
  .error-404 span {
    font-size: 20px;
  }
}
.error-404 img {
  margin-bottom: 40px;
  width: 770px;
  aspect-ratio: 770/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .error-404 img {
    margin-bottom: 24px;
  }
}

html,
body {
  margin-top: 0 !important;
  font-family: "Inter", sans-serif;
  background: #0D0D11;
  color: #fff;
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 16px;
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}

body {
  padding-top: calc(152px + 27px);
}
@media (max-width: 1024px) {
  body {
    padding-top: calc(88px + 16px);
  }
}

.container {
  width: 1286px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
