.help-page {
  background:
    radial-gradient(90% 55% at 8% -8%, rgba(200, 255, 26, 0.16), transparent 52%),
    radial-gradient(70% 45% at 100% 0%, rgba(17, 17, 17, 0.05), transparent 45%),
    #f7f7f4;
}

.help-main {
  padding-bottom: 72px;
}

.help-hero {
  padding: 48px 0 28px;
}

.help-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a5c00;
}

.help-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #111;
}

.help-lead {
  margin: 0 0 24px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--secondary, #666);
}

.help-search {
  position: relative;
  display: block;
  max-width: 440px;
}

.help-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #8a8a8a;
  pointer-events: none;
}

.help-search-icon svg {
  width: 18px;
  height: 18px;
}

.help-search-input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  color: #111;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-search-input::placeholder {
  color: #9a9a9a;
}

.help-search-input:focus {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 0 0 3px rgba(200, 255, 26, 0.35);
}

.help-body {
  padding-top: 8px;
}

.help-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px 40px;
  align-items: start;
}

.help-nav {
  position: sticky;
  top: 88px;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.help-nav-title {
  margin: 0 0 12px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.help-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.help-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 550;
  color: #444;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.help-nav-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2.2;
  color: #8a8a8a;
}

.help-nav-link:hover,
.help-nav-link.is-active {
  background: rgba(17, 17, 17, 0.05);
  color: #111;
}

.help-nav-link:hover svg,
.help-nav-link.is-active svg {
  color: #4a5c00;
}

.help-content {
  min-width: 0;
}

.help-empty {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.04);
  font-size: 14px;
  color: #666;
}

.help-category {
  margin-bottom: 28px;
  scroll-margin-top: 96px;
}

.help-category[hidden] {
  display: none;
}

.help-category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.help-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(200, 255, 26, 0.35);
  color: #3a4a00;
}

.help-category-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.help-category-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.help-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-item {
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.help-item[hidden] {
  display: none;
}

.help-item[open] {
  border-color: rgba(17, 17, 17, 0.14);
}

.help-item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.help-item-summary::-webkit-details-marker {
  display: none;
}

.help-item-summary::marker {
  content: "";
}

.help-item-q {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  color: #111;
  letter-spacing: -0.01em;
}

.help-item-chevron {
  display: flex;
  flex-shrink: 0;
  color: #8a8a8a;
  transition: transform 0.2s ease;
}

.help-item-chevron svg {
  width: 18px;
  height: 18px;
}

.help-item[open] .help-item-chevron {
  transform: rotate(180deg);
  color: #111;
}

.help-item-body {
  padding: 0 18px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--secondary, #666);
}

.help-item-body > :first-child {
  margin-top: 0;
}

.help-item-body > :last-child {
  margin-bottom: 0;
}

.help-item-body p {
  margin: 0 0 10px;
}

.help-item-body ul {
  margin: 0 0 10px;
  padding-left: 1.15em;
}

.help-item-body li {
  margin-bottom: 6px;
}

.help-item-body a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.help-item-body code {
  font-size: 0.92em;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(17, 17, 17, 0.06);
  color: #111;
}

.help-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding: 26px 28px;
  border-radius: 18px;
  background: #111;
  color: #fff;
}

.help-cta-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.help-cta-text {
  margin: 0;
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.help-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.help-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.help-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 900px) {
  .help-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .help-nav {
    position: static;
    padding: 14px;
  }

  .help-nav-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .help-nav-link {
    padding: 8px 12px;
    background: rgba(17, 17, 17, 0.03);
    font-size: 13px;
  }

  .help-nav-link svg {
    display: none;
  }
}

@media (max-width: 560px) {
  .help-hero {
    padding: 36px 0 20px;
  }

  .help-item-summary {
    padding: 14px 14px;
  }

  .help-item-body {
    padding: 0 14px 14px;
  }

  .help-cta {
    padding: 22px 18px;
  }

  .help-cta-actions {
    width: 100%;
  }

  .help-cta-actions .c-btn {
    width: 100%;
    justify-content: center;
  }
}
