:root {
  --accent-cyan: #78f0d0;
  --accent-blue: #75b9ff;
  --accent-violet: #a895ff;
  --accent-glow: rgba(117, 185, 255, .2);
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  background: rgba(1, 4, 8, .7);
  backdrop-filter: blur(5px);
  transition: opacity .28s ease, visibility .28s ease;
}

.help-header {
  background: rgba(5, 8, 12, .86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

.help-header nav a {
  position: relative;
  transition: color .2s ease;
}

.help-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transition: right .24s ease;
}

.help-header nav a:hover::after,
.help-header nav a:focus-visible::after {
  right: 0;
}

.help-hero {
  isolation: isolate;
  min-height: 840px;
  background:
    radial-gradient(circle at 18% 32%, rgba(84, 151, 231, .25), transparent 32%),
    radial-gradient(circle at 72% 22%, rgba(120, 240, 208, .1), transparent 25%),
    #06080c;
}

.help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(5, 8, 12, .08) 38%, rgba(5, 8, 12, .52) 70%, #05080c 100%);
}

.help-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(64vw, 980px);
  height: 100%;
  background:
    linear-gradient(90deg, #06080c 0%, rgba(6, 8, 12, .22) 35%, rgba(6, 8, 12, .12) 72%, #06080c 100%),
    linear-gradient(0deg, #06080c 0%, transparent 28%, rgba(6, 8, 12, .08) 76%, #06080c 100%),
    url("../media/vib-help-hero.webp") center/cover no-repeat;
  filter: saturate(.9) contrast(1.04);
  opacity: .88;
}

.hero-grid {
  z-index: 0;
  opacity: .1;
}

.hero-copy {
  z-index: 2;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .45);
}

.help-hero h1 {
  max-width: 820px;
  font-weight: 650;
}

.hero-copy > p {
  color: #bcc5cf;
  max-width: 650px;
}

.status {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(120, 240, 208, .24);
  border-radius: 999px;
  background: rgba(6, 13, 17, .48);
  backdrop-filter: blur(10px);
}

.hero-panel {
  align-self: end;
  margin-bottom: 18px;
  border-color: rgba(164, 194, 222, .28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(12, 19, 27, .88), rgba(7, 11, 16, .72));
  backdrop-filter: blur(18px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .04);
}

.map-row {
  grid-template-columns: 46px 95px 1fr;
}

.map-row em,
.quick-grid b,
.tutorial-steps article > b,
.withdraw-steps b,
.community-grid b,
.faq-list summary span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(117, 185, 255, .35);
  border-radius: 10px;
  color: #d9efff;
  background: linear-gradient(145deg, rgba(117, 185, 255, .16), rgba(168, 149, 255, .08));
  box-shadow: inset 0 1px rgba(255, 255, 255, .07), 0 8px 24px rgba(0, 0, 0, .15);
  font: 700 10px/1 monospace;
}

.map-row strong {
  color: #f7fbff;
}

.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(117, 185, 255, .28);
  border-radius: 999px;
  color: #bcdfff;
  background: linear-gradient(90deg, rgba(117, 185, 255, .12), rgba(120, 240, 208, .06));
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

.quick-grid a {
  position: relative;
  align-items: center;
  overflow: hidden;
}

.quick-grid a::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.quick-grid a:hover::before,
.quick-grid a:focus-visible::before {
  transform: scaleX(1);
}

.day-grid article,
.task-grid article,
.deposit-facts article,
.community-grid article {
  position: relative;
  overflow: hidden;
}

.day-grid article::after,
.task-grid article::after,
.community-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 100% 0%, rgba(117, 185, 255, .14), transparent 45%);
  transition: opacity .25s ease;
}

.day-grid article:hover::after,
.task-grid article:hover::after,
.community-grid article:hover::after {
  opacity: 1;
}

.day-grid > article > span,
.task-grid > article > span {
  border: 1px solid rgba(117, 185, 255, .35);
  border-radius: 999px;
  padding: 7px 11px;
  color: #bee3ff;
  background: rgba(117, 185, 255, .08);
  width: fit-content;
  display: inline-flex;
}

.task-grid::before {
  content: "";
  grid-column: 1 / -1;
  min-height: clamp(250px, 31vw, 430px);
  border: 1px solid #273341;
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, .78), transparent 38%, rgba(7, 10, 14, .12)),
    linear-gradient(0deg, rgba(7, 10, 14, .8), transparent 38%),
    url("../media/vib-help-tasks.webp") center/cover no-repeat;
  box-shadow: inset 0 -70px 90px rgba(5, 8, 12, .45);
}

.difficulty {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(100deg, rgba(117, 185, 255, .05), rgba(168, 149, 255, .03));
}

.primary-btn,
.final-cta a {
  box-shadow: 0 12px 34px rgba(117, 185, 255, .17);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-btn:hover,
.final-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(117, 185, 255, .24);
}

.mobile-menu-button,
.mobile-menu-drawer,
.mobile-menu-scrim {
  display: none;
}

@media (width <= 1000px) {
  .help-header .header-actions {
    margin-right: 58px;
  }

  .mobile-menu-button {
    display: grid;
    place-items: center;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 110;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(142, 174, 204, .34);
    border-radius: 12px;
    color: #f4f8fb;
    background: rgba(12, 17, 23, .92);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .32);
    cursor: pointer;
  }

  .mobile-menu-button span,
  .mobile-menu-button::before,
  .mobile-menu-button::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
  }

  .mobile-menu-button::before { transform: translateY(-7px); }
  .mobile-menu-button::after { transform: translateY(7px); }

  .mobile-menu-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: min(88vw, 390px);
    height: 100dvh;
    padding: 92px 24px 30px;
    border-left: 1px solid rgba(133, 164, 192, .24);
    color: #eef4f8;
    background:
      radial-gradient(circle at 90% 4%, rgba(117, 185, 255, .2), transparent 28%),
      linear-gradient(155deg, #0d141c, #070b10 72%);
    box-shadow: -30px 0 90px rgba(0, 0, 0, .5);
    transform: translateX(105%);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-menu-drawer::before {
    content: "MEMBER HELP CENTER";
    margin-bottom: 18px;
    color: #7890a6;
    letter-spacing: .16em;
    font: 9px monospace;
  }

  .mobile-menu-drawer a {
    display: grid;
    grid-template-columns: 38px 1fr 18px;
    align-items: center;
    min-height: 59px;
    border-bottom: 1px solid rgba(127, 157, 184, .17);
    font-size: 15px;
  }

  .mobile-menu-drawer a::before {
    content: attr(data-index);
    color: #86bfee;
    font: 9px monospace;
  }

  .mobile-menu-drawer a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    color: #71869a;
    transform: rotate(45deg);
  }

  .mobile-menu-drawer .mobile-app-link {
    grid-template-columns: 1fr 18px;
    margin-top: 22px;
    padding: 0 18px;
    border: 1px solid rgba(120, 240, 208, .34);
    border-radius: 12px;
    color: #08120f;
    background: linear-gradient(90deg, #a8f7df, #bcdfff);
    font-weight: 750;
  }

  .mobile-menu-drawer .mobile-app-link::before { display: none; }

  .mobile-menu-drawer .mobile-app-link::after {
    color: #24485c;
  }

  .mobile-menu-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    border: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(4px);
    transition: opacity .25s ease, visibility .25s ease;
  }

  body.vib-menu-open {
    overflow: hidden;
  }

  body.vib-menu-open .mobile-menu-drawer {
    transform: translateX(0);
  }

  body.vib-menu-open .mobile-menu-scrim {
    opacity: 1;
    visibility: visible;
  }

  body.vib-menu-open .mobile-menu-button span { opacity: 0; }
  body.vib-menu-open .mobile-menu-button::before { transform: rotate(45deg); }
  body.vib-menu-open .mobile-menu-button::after { transform: rotate(-45deg); }

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

  .help-hero::after {
    width: 76%;
    opacity: .68;
  }

  .hero-panel {
    max-width: 660px;
    justify-self: end;
  }
}

.clean-app-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.css-link-arrow {
  flex: none;
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  transform: rotate(-45deg);
  transform-origin: center;
}

@media (width <= 650px) {
  .help-header .header-actions {
    margin-right: 50px;
  }

  .language-select {
    height: 36px;
    padding: 0 7px;
  }

  .language-select > span {
    display: none;
  }

  .language-select select {
    min-width: 60px;
  }

  .mobile-menu-button {
    top: 13px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .help-hero {
    padding-top: 280px;
    gap: 45px;
  }

  .help-hero::after {
    top: 0;
    width: 100%;
    height: 330px;
    opacity: .92;
    background:
      linear-gradient(0deg, #06080c 0%, rgba(6, 8, 12, .05) 45%, rgba(6, 8, 12, .25) 100%),
      url("../media/vib-help-hero.webp") 62% center/cover no-repeat;
  }

  .help-hero h1 {
    margin-top: 28px;
    font-size: clamp(47px, 14.5vw, 62px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-panel {
    justify-self: stretch;
    margin: 0;
    padding: 18px;
    border-radius: 16px;
  }

  .map-row {
    grid-template-columns: 43px 70px 1fr;
    padding: 15px 0;
  }

  .map-row span {
    font-size: 10px;
  }

  .quick-grid b,
  .faq-list summary span {
    width: 30px;
    height: 30px;
  }

  .task-grid::before {
    min-height: 240px;
    background:
      linear-gradient(0deg, rgba(7, 10, 14, .78), transparent 48%),
      url("../media/vib-help-tasks.webp") center/cover no-repeat;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-button,
  .mobile-menu-drawer,
  .mobile-menu-scrim,
  .quick-grid a::before {
    transition: none;
  }
}

/* V2 — denser editorial layout and richer section imagery */
.quick-help {
  padding-top: 26px;
  padding-bottom: 48px;
}

.quick-grid {
  gap: 12px;
  border-top: 0;
}

.quick-grid a,
.quick-grid a + a {
  min-height: 104px;
  padding: 18px 18px;
  border: 1px solid #27313b;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(117,185,255,.025));
}

.quick-grid i {
  opacity: 1;
  place-self: center end;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(117,185,255,.35);
  border-radius: 50%;
  color: #dff3ff;
  background: linear-gradient(145deg, rgba(117,185,255,.18), rgba(168,149,255,.12));
  display: grid;
  place-items: center;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.08);
  transition: transform .22s ease, background .22s ease;
}

.quick-grid a:hover i {
  transform: translateX(3px);
  background: linear-gradient(145deg, rgba(120,240,208,.24), rgba(117,185,255,.18));
}

.trial-section,
.onboarding-section,
.dark-section,
.video-section,
.withdraw-section,
.project-section,
.deposit-section,
.community-section,
.faq-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.final-cta {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-title {
  gap: 5vw;
  margin: 32px 0 48px;
}

.section-title h2,
.video-layout h2,
.withdraw-layout h2,
.deposit-main h2,
.community-section h2,
.faq-head h2,
.final-cta h2,
.tutorial-copy h2 {
  font-size: clamp(40px, 4.35vw, 66px);
  line-height: 1.04;
}

.day-grid,
.task-grid,
.deposit-facts,
.community-grid {
  gap: 14px;
  border-top: 0;
}

.day-grid article,
.day-grid article + article,
.task-grid article,
.deposit-facts article,
.community-grid article {
  padding: 24px;
  border: 1px solid #2b3641;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(8,12,17,.16));
  box-shadow: 0 18px 52px rgba(0,0,0,.14);
}

.day-grid article:last-child,
.task-grid article:nth-child(2n),
.task-grid article:nth-child(3n),
.deposit-facts article:nth-child(2n),
.community-grid article:nth-child(2n) {
  border: 1px solid #2b3641;
}

.day-grid h3 {
  margin-top: 24px;
}

.reward-note {
  gap: 0;
  margin-top: 38px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0c1219;
}

.reward-note::before {
  content: "";
  grid-column: 1 / -1;
  min-height: clamp(230px, 28vw, 390px);
  background:
    linear-gradient(0deg, #0c1219 0%, transparent 45%),
    url("../media/vib-trial-onboarding.webp") center 45%/cover no-repeat;
}

.reward-note > div,
.reward-note > p {
  padding: 26px 30px 30px;
}

.reward-note > p {
  border-left: 1px solid #2c3743;
}

.onboarding-layout {
  gap: clamp(38px, 6vw, 88px);
  margin-top: 38px;
}

.tutorial-steps {
  margin-top: 32px;
}

.task-grid::before {
  min-height: clamp(270px, 28vw, 410px);
  border: 1px solid #2b3641;
  border-radius: 18px;
  box-shadow: inset 0 -80px 110px rgba(5,8,12,.52), 0 22px 70px rgba(0,0,0,.24);
}

.task-grid article {
  min-height: 225px;
}

.task-grid h3 {
  margin-top: 25px;
}

.difficulty {
  margin-top: 30px;
}

.video-layout {
  gap: clamp(34px, 5vw, 72px);
  margin-top: 34px;
}

.live-training-card {
  gap: 30px;
  margin-top: 36px;
  border-radius: 16px;
}

.withdraw-layout {
  gap: 34px 6vw;
  margin-top: 34px;
}

.withdraw-layout::before {
  content: "";
  grid-column: 1 / -1;
  min-height: clamp(250px, 29vw, 420px);
  border: 1px solid #2c3844;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(6,10,15,.76), transparent 52%),
    linear-gradient(0deg, rgba(6,10,15,.62), transparent 48%),
    url("../media/vib-withdraw-security.webp") center/cover no-repeat;
  box-shadow: 0 24px 76px rgba(0,0,0,.26);
}

.withdraw-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 0;
}

.withdraw-steps article {
  padding: 20px;
  border: 1px solid #2b3641;
  border-radius: 14px;
  background: rgba(255,255,255,.022);
}

.compare {
  border-radius: 18px;
  overflow: hidden;
  background: #0b1016;
}

.compare::before {
  content: "";
  display: block;
  min-height: clamp(250px, 29vw, 420px);
  border-bottom: 1px solid #293641;
  background:
    linear-gradient(0deg, #0b1016 0%, transparent 48%),
    url("../media/vib-official-projects.webp") center/cover no-repeat;
}

.compare-row {
  padding-top: 16px;
  padding-bottom: 16px;
}

.deposit-section {
  gap: 4vw;
}

.deposit-facts article {
  min-height: 180px;
}

.deposit-facts h3,
.community-grid h3 {
  margin-top: 22px;
}

.community-section {
  gap: 5vw;
}

.community-section::before {
  content: "";
  grid-column: 1 / -1;
  min-height: clamp(240px, 28vw, 400px);
  border: 1px solid #2b3742;
  border-radius: 18px;
  background:
    linear-gradient(0deg, #0a0e13 0%, transparent 42%),
    url("../media/vib-community-training.webp") center/cover no-repeat;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.community-grid article {
  min-height: 185px;
}

.faq-head {
  gap: 5vw;
}

.faq-head h2 {
  margin-top: 28px;
}

.faq-list {
  margin-top: 42px;
}

.faq-list summary {
  min-height: 72px;
  padding: 16px 18px;
}

.faq-list details {
  margin-bottom: 8px;
  border: 1px solid #2c3640;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255,255,255,.018);
}

.faq-list summary i {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(117,185,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: rgba(117,185,255,.07);
}

.section-label {
  position: relative;
  min-height: 38px;
  padding: 0 16px 0 13px;
  border-color: rgba(120,240,208,.28);
  color: #d6efff;
  background: linear-gradient(100deg, rgba(117,185,255,.16), rgba(120,240,208,.08), rgba(168,149,255,.1));
  box-shadow: 0 10px 32px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.08);
}

.section-label::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
}

@media (width <= 1000px) {
  .trial-section,
  .onboarding-section,
  .dark-section,
  .video-section,
  .withdraw-section,
  .project-section,
  .deposit-section,
  .community-section,
  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .withdraw-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 650px) {
  .trial-section,
  .onboarding-section,
  .dark-section,
  .video-section,
  .withdraw-section,
  .project-section,
  .deposit-section,
  .community-section,
  .faq-section {
    padding: 52px 18px;
  }

  .quick-help {
    padding: 24px 18px 42px;
  }

  .quick-grid {
    gap: 10px;
  }

  .quick-grid a,
  .quick-grid a + a {
    min-height: 80px;
    padding: 14px;
    border: 1px solid #27313b;
  }

  .section-title {
    margin: 25px 0 34px;
  }

  .section-title h2,
  .video-layout h2,
  .withdraw-layout h2,
  .deposit-main h2,
  .community-section h2,
  .faq-head h2,
  .final-cta h2,
  .tutorial-copy h2 {
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .day-grid,
  .task-grid,
  .deposit-facts,
  .community-grid {
    gap: 10px;
  }

  .day-grid article,
  .day-grid article + article,
  .task-grid article,
  .deposit-facts article,
  .community-grid article {
    min-height: auto;
    padding: 20px;
  }

  .reward-note {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .reward-note::before,
  .task-grid::before,
  .withdraw-layout::before,
  .compare::before,
  .community-section::before {
    min-height: 210px;
  }

  .reward-note > div,
  .reward-note > p {
    padding: 20px;
  }

  .reward-note > p {
    border-top: 1px solid #2c3743;
    border-left: 0;
  }

  .withdraw-steps {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .withdraw-steps article {
    padding: 17px;
  }

  .compare-head,
  .compare-row {
    gap: 8px;
  }

  .community-section {
    gap: 34px;
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 13px;
  }

  .faq-list summary b {
    font-size: 14px;
  }

  .faq-list details p {
    padding: 4px 18px 20px 51px;
  }
}
