:root {
  --vpl-bg: #070713;
  --vpl-panel: #111126;
  --vpl-panel-soft: #171735;
  --vpl-line: rgba(190, 183, 255, 0.16);
  --vpl-text: #f7f6ff;
  --vpl-muted: #b9b6d2;
  --vpl-violet: #8c6cff;
  --vpl-cyan: #32d9ff;
  --vpl-lime: #c8ff45;
  --vpl-danger: #ff718a;
  --vpl-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --vpl-radius-lg: 24px;
  --vpl-radius-md: 16px;
  --vpl-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 2%, rgba(140, 108, 255, 0.18), transparent 31rem),
    radial-gradient(circle at 4% 28%, rgba(50, 217, 255, 0.08), transparent 24rem),
    var(--vpl-bg);
  color: var(--vpl-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.vpl-skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background: var(--vpl-lime);
  color: #111218;
  font-weight: 800;
}

.vpl-skip-link:focus {
  top: 1rem;
}

.vpl-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--vpl-line);
  background: rgba(7, 7, 19, 0.88);
  backdrop-filter: blur(18px);
}

.vpl-topbar__inner {
  width: min(var(--vpl-container), calc(100% - 2rem));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vpl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-size: 1.26rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.vpl-brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 255, 69, 0.45);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(200, 255, 69, 0.16), rgba(140, 108, 255, 0.22));
  color: var(--vpl-lime);
  box-shadow: inset 0 0 22px rgba(140, 108, 255, 0.2);
}

.vpl-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.vpl-nav__link {
  padding: 0.62rem 0.78rem;
  border-radius: 10px;
  color: var(--vpl-muted);
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.vpl-nav__link:hover,
.vpl-nav__link--current {
  background: rgba(140, 108, 255, 0.14);
  color: var(--vpl-text);
}

.vpl-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--vpl-line);
  border-radius: 12px;
  background: var(--vpl-panel);
  color: var(--vpl-text);
  cursor: pointer;
}

.vpl-menu-button svg {
  width: 22px;
  height: 22px;
}

.vpl-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--vpl-lime), #9dfb76);
  box-shadow: 0 12px 28px rgba(200, 255, 69, 0.13);
  color: #111218;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vpl-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 255, 69, 0.22);
}

.vpl-button--ghost {
  border-color: var(--vpl-line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  color: var(--vpl-text);
}

.vpl-button--compact {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.vpl-hero {
  width: min(var(--vpl-container), calc(100% - 2rem));
  margin: 2rem auto 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4.2rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 4.2rem);
  border: 1px solid var(--vpl-line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(140, 108, 255, 0.1), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: var(--vpl-shadow);
  overflow: hidden;
}

.vpl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--vpl-lime);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vpl-eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(200, 255, 69, 0.1);
  content: "";
}

.vpl-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5.6vw, 4.7rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.vpl-hero h1 mark,
.vpl-article mark {
  padding: 0 0.12em;
  background: linear-gradient(90deg, var(--vpl-lime), #88fcb0);
  color: #111218;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.vpl-hero__lead {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--vpl-muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.vpl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.vpl-console {
  position: relative;
  min-height: 365px;
  padding: 1rem;
  border: 1px solid rgba(140, 108, 255, 0.32);
  border-radius: 24px;
  background: #0d0d21;
  box-shadow: inset 0 0 50px rgba(140, 108, 255, 0.09), 0 26px 70px rgba(0, 0, 0, 0.35);
}

.vpl-console::before {
  position: absolute;
  inset: -35% 12% auto;
  height: 250px;
  border-radius: 50%;
  background: rgba(50, 217, 255, 0.14);
  filter: blur(55px);
  content: "";
  pointer-events: none;
}

.vpl-console__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.8rem 1rem;
  border-bottom: 1px solid var(--vpl-line);
  color: var(--vpl-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vpl-console__status {
  color: var(--vpl-lime);
}

.vpl-console__wallet {
  position: relative;
  margin: 1rem 0;
  padding: 1.2rem;
  border: 1px solid var(--vpl-line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(140, 108, 255, 0.18), rgba(50, 217, 255, 0.06));
}

.vpl-console__wallet small,
.vpl-quick-card small {
  display: block;
  color: var(--vpl-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vpl-console__wallet strong {
  display: block;
  margin: 0.35rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.06em;
}

.vpl-console__wallet span {
  color: var(--vpl-cyan);
  font-size: 0.88rem;
  font-weight: 800;
}

.vpl-console__coins {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.vpl-console__coin {
  padding: 0.9rem 0.75rem;
  border: 1px solid var(--vpl-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.vpl-console__coin strong,
.vpl-console__coin span {
  display: block;
}

.vpl-console__coin span {
  margin-top: 0.2rem;
  color: var(--vpl-muted);
  font-size: 0.78rem;
}

.vpl-trust-strip {
  width: min(var(--vpl-container), calc(100% - 2rem));
  margin: 0 auto 2.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.vpl-quick-card {
  min-height: 104px;
  padding: 1.05rem;
  border: 1px solid var(--vpl-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.vpl-quick-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.08rem;
}

.vpl-layout {
  width: min(var(--vpl-container), calc(100% - 2rem));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 1.5rem;
  align-items: start;
}

.vpl-article {
  min-width: 0;
  padding: clamp(1.25rem, 3.4vw, 3.2rem);
  border: 1px solid var(--vpl-line);
  border-radius: var(--vpl-radius-lg);
  background: rgba(17, 17, 38, 0.84);
  box-shadow: var(--vpl-shadow);
}

.vpl-article h2,
.vpl-article h3 {
  scroll-margin-top: 98px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.vpl-article h2 {
  margin: 2.6rem 0 1rem;
  padding-top: 0.3rem;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.vpl-article h2:first-child {
  margin-top: 0;
}

.vpl-article h3 {
  margin: 2rem 0 0.65rem;
  color: #d7ccff;
  font-size: 1.3rem;
}

.vpl-article p {
  margin: 0 0 1.05rem;
  color: #dedbec;
}

.vpl-article ul,
.vpl-article ol {
  margin: 1rem 0 1.35rem;
  padding-left: 1.35rem;
  color: #dedbec;
}

.vpl-article li {
  margin: 0.48rem 0;
  padding-left: 0.25rem;
}

.vpl-article strong {
  color: #fff;
}

.vpl-article blockquote {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--vpl-violet);
  border-radius: 0 12px 12px 0;
  background: rgba(140, 108, 255, 0.08);
}

.vpl-table-wrap {
  width: 100%;
  margin: 1.25rem 0 1.8rem;
  overflow-x: auto;
  border: 1px solid var(--vpl-line);
  border-radius: 15px;
}

.vpl-article table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(8, 8, 23, 0.58);
  font-size: 0.93rem;
}

.vpl-article th,
.vpl-article td {
  padding: 0.9rem 0.95rem;
  border-bottom: 1px solid var(--vpl-line);
  text-align: left;
  vertical-align: top;
}

.vpl-article th {
  background: rgba(140, 108, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vpl-article tr:last-child td {
  border-bottom: 0;
}

.vpl-toc {
  position: sticky;
  top: 94px;
  padding: 1.15rem;
  border: 1px solid var(--vpl-line);
  border-radius: 18px;
  background: rgba(17, 17, 38, 0.88);
  box-shadow: var(--vpl-shadow);
}

.vpl-toc__title {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--vpl-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vpl-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vpl-toc__list li + li {
  margin-top: 0.25rem;
}

.vpl-toc__list a {
  display: block;
  padding: 0.5rem 0.55rem;
  border-radius: 9px;
  color: var(--vpl-muted);
  font-size: 0.88rem;
  font-weight: 680;
  line-height: 1.35;
  text-decoration: none;
}

.vpl-toc__list a:hover {
  background: rgba(140, 108, 255, 0.12);
  color: var(--vpl-text);
}

.vpl-toc__cta {
  width: 100%;
  margin-top: 1rem;
}

.vpl-faq {
  display: grid;
  gap: 0.7rem;
}

.vpl-faq__item {
  border: 1px solid var(--vpl-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.vpl-faq__question {
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  cursor: pointer;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.vpl-faq__question::-webkit-details-marker {
  display: none;
}

.vpl-faq__question::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vpl-lime);
  content: "+";
  font-size: 1.35rem;
}

.vpl-faq__item[open] .vpl-faq__question::after {
  content: "−";
}

.vpl-faq__answer {
  padding: 0 1rem 1rem;
  color: var(--vpl-muted);
}

.vpl-faq__answer p:last-child {
  margin-bottom: 0;
}

.vpl-callout {
  margin: 1.5rem 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(200, 255, 69, 0.26);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(200, 255, 69, 0.08), rgba(50, 217, 255, 0.04));
}

.vpl-callout strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--vpl-lime);
}

.vpl-callout p:last-child {
  margin-bottom: 0;
}

.vpl-step-grid,
.vpl-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.2rem 0 1.5rem;
}

.vpl-step,
.vpl-info-card {
  padding: 1.05rem;
  border: 1px solid var(--vpl-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.026);
}

.vpl-step__number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  background: rgba(140, 108, 255, 0.18);
  color: #d8ceff;
  font-weight: 900;
}

.vpl-step h3,
.vpl-info-card h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.08rem;
}

.vpl-step p,
.vpl-info-card p {
  margin: 0;
  color: var(--vpl-muted);
  font-size: 0.94rem;
}

.vpl-offer {
  margin: 1.4rem 0;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  border: 1px solid rgba(140, 108, 255, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(50, 217, 255, 0.14), transparent 18rem),
    rgba(140, 108, 255, 0.09);
}

.vpl-offer__amount {
  margin: 0.2rem 0 0.6rem;
  color: var(--vpl-lime);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.vpl-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.vpl-related {
  width: min(var(--vpl-container), calc(100% - 2rem));
  margin: 0 auto 3rem;
}

.vpl-related__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.vpl-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.vpl-related__card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--vpl-line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(140, 108, 255, 0.11), rgba(255, 255, 255, 0.02));
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.vpl-related__card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 69, 0.35);
}

.vpl-related__card span {
  color: var(--vpl-lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vpl-related__card strong {
  font-size: 1.25rem;
  line-height: 1.25;
}

.vpl-footer {
  border-top: 1px solid var(--vpl-line);
  background: #090919;
}

.vpl-footer__inner {
  width: min(var(--vpl-container), calc(100% - 2rem));
  margin-inline: auto;
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.vpl-footer p {
  max-width: 720px;
  margin: 0.75rem 0 0;
  color: var(--vpl-muted);
  font-size: 0.9rem;
}

.vpl-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 0.65rem 1rem;
}

.vpl-footer__links a {
  color: var(--vpl-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.vpl-footer__links a:hover {
  color: var(--vpl-text);
}

.vpl-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .vpl-nav {
    position: fixed;
    inset: 77px 1rem auto;
    display: none;
    padding: 0.8rem;
    border: 1px solid var(--vpl-line);
    border-radius: 16px;
    background: #111126;
    box-shadow: var(--vpl-shadow);
  }

  .vpl-nav--open {
    display: grid;
  }

  .vpl-nav__link,
  .vpl-nav .vpl-button {
    width: 100%;
    justify-content: flex-start;
  }

  .vpl-menu-button {
    display: grid;
  }

  .vpl-hero {
    grid-template-columns: 1fr;
  }

  .vpl-console {
    min-height: 0;
  }

  .vpl-layout {
    grid-template-columns: 1fr;
  }

  .vpl-toc {
    position: static;
    grid-row: 1;
  }

  .vpl-toc__list {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .vpl-toc__list li {
    flex: 0 0 auto;
  }

  .vpl-toc__list a {
    border: 1px solid var(--vpl-line);
    white-space: nowrap;
  }

  .vpl-toc__cta {
    width: auto;
  }
}

@media (max-width: 720px) {
  .vpl-topbar__inner {
    min-height: 68px;
  }

  .vpl-nav {
    inset-block-start: 69px;
  }

  .vpl-hero {
    margin-top: 1rem;
    border-radius: 22px;
  }

  .vpl-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }

  .vpl-console__coins,
  .vpl-trust-strip,
  .vpl-step-grid,
  .vpl-card-grid,
  .vpl-related__grid,
  .vpl-footer__inner {
    grid-template-columns: 1fr;
  }

  .vpl-console__coins {
    grid-template-columns: repeat(3, 1fr);
  }

  .vpl-quick-card {
    min-height: 84px;
  }

  .vpl-article {
    border-radius: 18px;
  }

  .vpl-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  .vpl-brand__text {
    font-size: 1.05rem;
  }

  .vpl-hero__actions,
  .vpl-offer__actions {
    display: grid;
  }

  .vpl-console__coins {
    grid-template-columns: 1fr;
  }

  .vpl-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
