/**
 * dPass Invest — wordmark gradient (aligned with logo: lavender / violet → teal → green).
 * Theme via html[data-theme] + localStorage dpass-theme, same as the rest of the site.
 */
:root,
html[data-theme="dark"] {
  --brand-wordmark-gradient: linear-gradient(
    100deg,
    #f5f3ff 0%,
    #e9d5ff 10%,
    #a78bfa 36%,
    #2dd4bf 68%,
    #4ade80 100%
  );
}

html[data-theme="light"] {
  --brand-wordmark-gradient: linear-gradient(
    100deg,
    #4c1d95 0%,
    #6d28d9 24%,
    #0d9488 58%,
    #047857 100%
  );
}

.brand-wordmark,
.nav-brand-text strong.brand-wordmark,
.pl-nav-brand-text strong.brand-wordmark,
.header-brand-name.brand-wordmark,
.adm-auth-brand h1.brand-wordmark,
.gate404-brand strong.brand-wordmark {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: var(--brand-wordmark-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

a:hover .brand-wordmark,
a:hover strong.brand-wordmark {
  filter: brightness(1.06);
}

/* Terms / Privacy (and any shared legal page): accent heading icons read clearly on light surfaces */
html[data-theme="light"] .highlight-card.accent h3 svg {
  stroke: #047857;
}
