:root {
  --help-nav-bg: rgba(255,255,255,0.04);
  --help-surface: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  --help-surface-strong: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  --help-hairline: rgba(255,255,255,0.09);
  --help-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.help-shell {
  width: 100% !important;
  box-sizing: border-box !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding: 36px 24px 96px !important;
}

.help-top {
  min-width: 0 !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 24px !important;
  align-items: center !important;
  margin-bottom: 34px !important;
  padding: 18px 22px !important;
  border: 1px solid var(--help-hairline) !important;
  border-radius: 22px !important;
  background: var(--help-surface) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: var(--help-shadow) !important;
}

.help-shell > .eyebrow:first-of-type {
  display: inline-block;
  margin-bottom: 14px !important;
}

.help-shell > h1 {
  margin: 0 !important;
  margin-top: 12px !important;
  font: 600 clamp(2.5rem, 5vw, 4.4rem)/0.92 "Times New Roman", Georgia, serif !important;
  letter-spacing: -0.04em !important;
  max-width: 15ch;
  overflow-wrap: break-word;
}

.help-shell > p {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  max-width: 760px !important;
  color: rgba(255,255,255,0.76) !important;
  font: 400 15px/1.72 var(--font-sans) !important;
  overflow-wrap: break-word !important;
}

.help-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 34px;
  max-width: 100%;
  min-width: 0;
}

.help-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--help-hairline);
  background: rgba(255,255,255,0.04);
  color: var(--ink-soft);
  text-decoration: none;
  font: 700 11px/1 var(--font-sans);
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.help-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
  color: var(--ink);
}

.help-nav a.is-active {
  border-color: var(--accent);
  color: var(--ink);
  background: rgba(218, 41, 28, 0.12);
}

.grid {
  gap: 18px !important;
  margin-top: 30px !important;
}

.card,
.section {
  border-radius: 24px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.card {
  border: 1px solid var(--help-hairline) !important;
  background: var(--help-surface-strong) !important;
  box-shadow: var(--help-shadow) !important;
}

a.card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

a.card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 143, 132, 0.26) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04)) !important;
}

.card h2,
.section h2 {
  color: var(--ink);
  letter-spacing: -0.03em;
}

.card p,
.section p,
.section li {
  color: rgba(255,255,255,0.74) !important;
  line-height: 1.72 !important;
}

.section {
  margin-top: 16px;
  padding: 24px 26px !important;
  border: 1px solid var(--help-hairline) !important;
  background: var(--help-surface) !important;
  box-shadow: var(--help-shadow) !important;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font: 600 28px/1.02 "Times New Roman", Georgia, serif;
}

.section h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--ink);
  font: 600 18px/1.25 var(--font-sans);
}

.section ul {
  margin: 12px 0 0 !important;
}

.section code {
  color: #ffb0a8;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.meta .eyebrow:last-child {
  color: rgba(255,255,255,0.46);
}

@media (max-width: 820px) {
  .help-shell {
    padding: 18px 14px 72px !important;
  }
  .help-top {
    display: block !important;
    padding: 18px !important;
  }
  .help-top .btn {
    margin-top: 16px !important;
  }
  .help-shell > h1 {
    max-width: none;
    font-size: 2.5rem !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 820px) {
  .help-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    box-sizing: border-box;
  }
}
