/* /public_html/assets/css/help.css */

/* ======================================================
   HELP PAGE — CLEAN DAY / NIGHT THEME
   Replace old file completely. Do not append.
====================================================== */

/* -----------------------------
   Theme tokens
----------------------------- */

body.help-page {
  --help-bg: #fbf7f0;
  --help-bg-2: #fffaf5;
  --help-surface: rgba(255, 255, 255, 0.94);
  --help-surface-solid: #ffffff;
  --help-surface-soft: #fff8ef;
  --help-text: #261f1b;
  --help-muted: #73665f;
  --help-line: rgba(221, 207, 190, 0.92);

  --help-brand: #8a73c7;
  --help-brand-strong: #705bb4;
  --help-brand-soft: rgba(138, 115, 199, 0.14);

  --help-rose: #e879a4;
  --help-gold: #f59e0b;
  --help-green: #16a34a;

  --help-radius-xl: 28px;
  --help-radius-lg: 22px;
  --help-radius-md: 16px;

  --help-shadow: 0 22px 70px rgba(42, 31, 24, 0.11);
  --help-shadow-soft: 0 14px 36px rgba(42, 31, 24, 0.08);

  background:
    radial-gradient(circle at 8% 4%, rgba(138, 115, 199, 0.16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(232, 121, 164, 0.12), transparent 30%),
    linear-gradient(180deg, var(--help-bg-2) 0%, var(--help-bg) 48%, #ffffff 100%);
  color: var(--help-text);
}
body.help-page,
body.help-page .page-main.help-page,
body.help-page main.help-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(138, 115, 199, 0.16), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(232, 121, 164, 0.12), transparent 30%),
    linear-gradient(180deg, var(--help-bg-2) 0%, var(--help-bg) 48%, var(--help-bg) 100%) !important;
  color: var(--help-text) !important;
}

html[data-theme="dark"] body.help-page,
html[data-theme="dark"] body.help-page .page-main.help-page,
html[data-theme="dark"] body.help-page main.help-page,
body.theme-dark.help-page,
body.theme-dark.help-page .page-main.help-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(139, 92, 246, 0.2), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(232, 121, 164, 0.14), transparent 30%),
    linear-gradient(180deg, var(--help-bg-2) 0%, var(--help-bg) 56%, var(--help-bg-2) 100%) !important;
  color: var(--help-text) !important;
}
/* Dark theme: only when your site explicitly sets dark */
html[data-theme="dark"] body.help-page,
body.theme-dark.help-page {
  --help-bg: #100f16;
  --help-bg-2: #15131d;
  --help-surface: rgba(28, 25, 39, 0.94);
  --help-surface-solid: #1c1927;
  --help-surface-soft: #242030;
  --help-text: #f8f7fb;
  --help-muted: #c9c2d6;
  --help-line: rgba(255, 255, 255, 0.12);

  --help-brand: #b9a7ff;
  --help-brand-strong: #d6ccff;
  --help-brand-soft: rgba(185, 167, 255, 0.16);

  --help-shadow: 0 22px 56px rgba(0, 0, 0, 0.44);

  background:
    radial-gradient(circle at 8% 4%, rgba(139, 92, 246, 0.2), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(232, 121, 164, 0.14), transparent 30%),
    linear-gradient(180deg, var(--help-bg-2) 0%, var(--help-bg) 56%, var(--help-bg-2) 100%);
}

/* -----------------------------
   Base layout
----------------------------- */

.help-shell {
  padding-top: 34px;
  padding-bottom: 56px;
}

body.help-page a {
  color: inherit;
}

[data-help-searchable][hidden] {
  display: none !important;
}

/* -----------------------------
   Hero
----------------------------- */

.help-hero {
  margin-bottom: 22px;
}

.help-hero__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: stretch;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--help-line);
  border-radius: var(--help-radius-xl);
  background:
    linear-gradient(135deg, var(--help-surface), var(--help-surface-soft)),
    radial-gradient(circle at top right, var(--help-brand-soft), transparent 36%);
  box-shadow: var(--help-shadow);
}

.help-hero__main::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: var(--help-brand-soft);
  pointer-events: none;
}

.help-hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  max-width: 780px;
}

.help-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--help-brand-soft);
  border: 1px solid var(--help-line);
  color: var(--help-brand-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.help-hero h1 {
  margin: 16px 0 12px;
  color: var(--help-text);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.help-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--help-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.help-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.help-hero__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--help-surface-solid);
  border: 1px solid var(--help-line);
  color: var(--help-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(42, 31, 24, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.help-hero__chips a:hover {
  transform: translateY(-2px);
  border-color: var(--help-brand);
  background: var(--help-brand-soft);
}

.help-hero__visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: stretch;
}

.help-hero__visual-glow {
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 20%, var(--help-brand-soft), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(245, 158, 11, 0.18), transparent 32%);
  filter: blur(8px);
}

.help-hero__image-card {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--help-line);
  background: var(--help-surface-solid);
  box-shadow: 0 18px 50px rgba(42, 31, 24, 0.12);
}

.help-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 430px;
  object-fit: cover;
}

/* -----------------------------
   Grids and cards
----------------------------- */

.help-grid {
  display: grid;
  gap: 18px;
}

.help-grid--top {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  margin-bottom: 18px;
}

.help-grid--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.help-card {
  padding: 22px;
  border: 1px solid var(--help-line);
  border-radius: var(--help-radius-lg);
  background: var(--help-surface);
  color: var(--help-text);
  box-shadow: var(--help-shadow-soft);
  backdrop-filter: blur(14px);
}

.help-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.help-card__head h2 {
  margin: 0;
  color: var(--help-text);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.help-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--help-brand-soft);
  border: 1px solid var(--help-line);
  color: var(--help-brand-strong);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

/* -----------------------------
   Search
----------------------------- */

.help-search-box {
  position: relative;
}

.help-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--help-line);
  background: var(--help-surface-solid);
  color: var(--help-text);
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.help-search-input:focus {
  border-color: var(--help-brand);
  box-shadow: 0 0 0 4px var(--help-brand-soft);
}

.help-search-input::placeholder {
  color: var(--help-muted);
}

.help-topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.help-topic-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--help-line);
  background: var(--help-surface-solid);
  color: var(--help-text);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.help-topic-chip:hover {
  transform: translateY(-1px);
  background: var(--help-brand-soft);
  border-color: var(--help-brand);
}

.help-search-empty {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--help-surface-soft);
  border: 1px solid var(--help-line);
  color: var(--help-brand-strong);
  font-weight: 750;
}

/* -----------------------------
   AI launcher
----------------------------- */

.help-ai-launcher-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, var(--help-brand-soft), transparent 34%),
    linear-gradient(145deg, var(--help-surface), var(--help-surface-soft));
}

.help-ai-launcher-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(217, 70, 239, 0.11);
  pointer-events: none;
}

.help-ai-intro {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--help-muted);
  line-height: 1.65;
}

.help-ai-launcher {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "icon copy"
    "button button";
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--help-surface), var(--help-surface-soft));
  border: 1px solid var(--help-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 40px rgba(42, 31, 24, 0.08);
}

.help-ai-launcher__icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.25);
}

.help-ai-launcher__copy {
  grid-area: copy;
  min-width: 0;
}

.help-ai-launcher__copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--help-text);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.help-ai-launcher__copy span {
  display: block;
  color: var(--help-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.help-ai-open-btn {
  grid-area: button;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border-radius: 15px;
  font-size: 0.96rem;
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.23);
}

.help-ai-open-btn:not(:disabled) {
  animation: helpAiPulse 2.6s ease-in-out infinite;
}

@keyframes helpAiPulse {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(139, 92, 246, 0.22);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 18px 36px rgba(236, 72, 153, 0.28);
    transform: translateY(-1px);
  }
}

/* -----------------------------
   FAQ
----------------------------- */

.help-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.help-faq-item {
  padding: 16px;
  border: 1px solid var(--help-line);
  border-radius: 18px;
  background: var(--help-surface-solid);
  box-shadow: 0 10px 22px rgba(42, 31, 24, 0.045);
}

.help-faq-item__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--help-brand-soft);
  color: var(--help-brand-strong);
  font-size: 0.74rem;
  font-weight: 850;
}

.help-faq-item h3 {
  margin: 0 0 8px;
  color: var(--help-text);
  font-size: 1rem;
  line-height: 1.28;
}

.help-faq-item p {
  margin: 0;
  color: var(--help-muted);
  font-size: 0.93rem;
  line-height: 1.58;
}

.help-faq-item__link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--help-brand-strong);
  font-weight: 850;
  text-decoration: none;
}

.help-faq-item__link:hover {
  text-decoration: underline;
}

/* -----------------------------
   Popular links
----------------------------- */

.help-popular-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.help-link-card {
  display: flex;
  flex-direction: column;
  min-height: 128px;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid var(--help-line);
  background: var(--help-surface-solid);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(42, 31, 24, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.help-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--help-brand);
  box-shadow: 0 16px 28px rgba(42, 31, 24, 0.075);
}

.help-link-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--help-text);
  font-size: 0.98rem;
  line-height: 1.28;
}

.help-link-card span {
  display: block;
  color: var(--help-muted);
  font-size: 0.91rem;
  line-height: 1.52;
}

.help-link-card em {
  margin-top: auto;
  padding-top: 12px;
  color: var(--help-brand-strong);
  font-style: normal;
  font-weight: 850;
  font-size: 0.88rem;
}

/* -----------------------------
   Contact / tips
----------------------------- */

.help-tips-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-tips-list li {
  padding: 13px 14px;
  border-radius: 15px;
  border: 1px solid var(--help-line);
  background: var(--help-surface-solid);
  color: var(--help-muted);
  line-height: 1.55;
}

.help-tips-list strong {
  color: var(--help-text);
}

.help-contact-action {
  margin-top: 16px;
}

/* -----------------------------
   Comic strip
----------------------------- */

.help-comic-card {
  overflow: hidden;
}

.help-comic-wrap {
  position: relative;
}

.help-comic-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
}

.help-comic-panel {
  position: relative;
  flex: 0 0 calc(25% - 14px);
  min-height: 260px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--help-line);
  background:
    radial-gradient(circle at top left, var(--help-brand-soft), transparent 42%),
    linear-gradient(180deg, var(--help-surface-solid), var(--help-surface-soft));
  color: var(--help-text);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  scroll-snap-align: start;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.18s ease;
}

.help-comic-panel.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.help-comic-panel__scene {
  position: relative;
  height: 120px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--help-line);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 211, 120, 0.25), transparent 36%),
    linear-gradient(135deg, var(--help-surface-soft), var(--help-surface-solid));
}

.help-comic-panel__scene::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  filter: blur(2px);
}

.help-comic-panel--vault_guard .help-comic-panel__scene,
.help-comic-panel--authenticator .help-comic-panel__scene,
.help-comic-panel--vault_open .help-comic-panel__scene {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 211, 120, 0.25), transparent 36%),
    linear-gradient(135deg, var(--help-surface-soft), var(--help-surface-solid));
}

.help-comic-character {
  position: absolute;
  left: 22px;
  bottom: 20px;
  font-size: 44px;
  animation: comicBounce 2s ease-in-out infinite;
}

.help-comic-character--hero {
  font-size: 50px;
}

.help-comic-character--phone {
  font-size: 48px;
  animation: comicPulse 1.4s ease-in-out infinite;
}

.help-comic-character--success {
  font-size: 48px;
  animation: comicPop 1.7s ease-in-out infinite;
}

.help-comic-bubble {
  position: absolute;
  top: 14px;
  right: 14px;
  max-width: 130px;
  padding: 9px 11px;
  border-radius: 16px 16px 16px 4px;
  background: var(--help-surface-solid);
  border: 1px solid var(--help-line);
  color: var(--help-text);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.help-comic-step {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--help-brand-soft);
  color: var(--help-brand-strong);
  font-size: 12px;
  font-weight: 800;
}

.help-comic-panel h3 {
  margin: 0 0 8px;
  color: var(--help-text);
  font-size: 17px;
}

.help-comic-panel p {
  margin: 0;
  color: var(--help-muted);
  line-height: 1.55;
}

.help-comic-progress {
  display: flex;
  gap: 7px;
  margin: 0 0 16px;
}

.help-comic-progress span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--help-line);
  transition: width 0.25s ease, background 0.25s ease;
}

.help-comic-progress span.is-active {
  width: 28px;
  background: var(--help-brand);
}

.help-comic-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

@keyframes comicBounce {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes comicPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes comicPop {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }

  50% {
    transform: scale(1.12) rotate(6deg);
  }
}

/* -----------------------------
   AI modal
----------------------------- */

.help-ai-modal__dialog {
  background: var(--help-surface-solid);
  color: var(--help-text);
  border: 1px solid var(--help-line);
}

.help-ai-modal__header,
.help-ai-modal__body {
  border-color: var(--help-line);
}

.help-ai-modal__close {
  color: var(--help-text);
}

.help-ai-form textarea,
.help-ai-form input {
  background: var(--help-surface-solid);
  color: var(--help-text);
  border: 1px solid var(--help-line);
}

.help-ai-status,
.help-ai-output {
  background: var(--help-surface-soft);
  color: var(--help-text);
  border: 1px solid var(--help-line);
}

/* -----------------------------
   Buttons fallback
----------------------------- */

.help-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.help-page .btn--primary {
  background: linear-gradient(135deg, var(--help-brand), var(--help-brand-strong));
  color: #15111f;
  box-shadow: 0 12px 24px rgba(109, 67, 217, 0.22);
}

html[data-theme="dark"] body.help-page .btn--primary,
body.theme-dark.help-page .btn--primary {
  color: #15111f;
}

.help-page .btn--secondary {
  background: var(--help-brand-soft);
  color: var(--help-brand-strong);
  border: 1px solid var(--help-line);
}

.help-page .btn--disabled {
  background: var(--help-surface-soft);
  color: var(--help-muted);
  cursor: not-allowed;
}
body.help-page *,
body.help-page *::before,
body.help-page *::after {
  box-sizing: border-box;
}
/* -----------------------------
   Responsive
----------------------------- */

@media (max-width: 1180px) {
  .help-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1000px) {
  .help-comic-panel {
    flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 920px) {
  .help-shell {
    padding-top: 22px;
    padding-bottom: 38px;
  }

  .help-hero__main,
  .help-grid--top,
  .help-grid--bottom {
    grid-template-columns: 1fr;
  }

  .help-hero__main {
    padding: 22px;
  }

  .help-hero__text {
    min-height: auto;
  }

  .help-hero__visual,
  .help-hero__image {
    min-height: 240px;
  }

  .help-hero__image {
    max-height: 320px;
  }
}

@media (max-width: 720px) {
  .help-card,
  .help-hero__main,
  .help-comic-card {
    border-radius: 18px;
  }

  .help-comic-panel {
    min-height: 250px;
  }

  .help-comic-controls {
    position: sticky;
    bottom: 10px;
    z-index: 3;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--help-line);
    background: var(--help-surface);
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 680px) {
  .help-shell {
    padding-top: 16px;
  }

  .help-hero__main {
    padding: 16px;
  }

  .help-card {
    padding: 16px;
    border-radius: 20px;
  }

  .help-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .help-hero__chips {
    gap: 8px;
  }

  .help-hero__chips a,
  .help-topic-chip {
    font-size: 0.84rem;
  }

  .help-ai-launcher {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .help-ai-launcher__icon {
    width: 48px;
    height: 48px;
  }

  .help-link-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .help-comic-panel {
    flex-basis: 92%;
  }

  .help-comic-controls {
    justify-content: stretch;
  }

  .help-comic-controls .btn {
    flex: 1;
    text-align: center;
  }
}

/* -----------------------------
   Reduced motion
----------------------------- */

@media (prefers-reduced-motion: reduce) {
  .help-ai-open-btn,
  .help-comic-character,
  .help-comic-character--phone,
  .help-comic-character--success {
    animation: none;
  }

  .help-comic-panel,
  .help-hero__chips a,
  .help-topic-chip,
  .help-link-card {
    transition: none;
  }
}
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  user-select: none;
  white-space: nowrap;
}

.hc-btn:hover {
  transform: translateY(-2px);
}

.hc-btn:active {
  transform: translateY(0);
}

.hc-btn:focus-visible {
  outline: 3px solid rgba(255, 193, 7, .55);
  outline-offset: 3px;
}

.hc-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #facc15, #dc2626);
  box-shadow: 0 14px 30px rgba(22, 163, 74, .28);
}

.hc-btn--secondary {
  color: #14532d;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(20, 83, 45, .18), 0 10px 24px rgba(15, 23, 42, .08);
}

.hc-btn--disabled,
.hc-btn:disabled {
  color: #9ca3af;
  background: #e5e7eb;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: .8;
}

@media (max-width: 640px) {
  .hc-btn {
    width: 100%;
    min-height: 48px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .help-ai-launcher .hc-btn,
  .help-comic-controls .hc-btn,
  .help-contact-action .hc-btn {
    width: 100%;
  }
}