/* wiseDo Rebrand: unified gold accent + serif headings + de-cliché pass */
/* Goal: strip the generic AI-template tells (gradient text, grid backdrop,
   glassmorphism glows, soft pill cards) while keeping the dark+gold theme
   and existing layout. CSS-only, no bundle changes. */

/* --- 1. Unify accent: swap the sky-blue primary (hsl 200) to gold (hsl 46) --- */
:root,
.dark {
  --primary: 46 65% 52%;
  --accent: 46 65% 52%;
  --ring: 46 65% 52%;
  --primary-foreground: 222 45% 9%;
}

/* --- 2. Serif headings for manufacturing-grade credibility --- */
h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: Georgia, serif !important;
}

/* --- 3. Kill the #1 tell: gradient text. Solid gold keyword instead. --- */
.text-gradient {
  background: none !important;
  -webkit-text-fill-color: #D4AF37 !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #D4AF37 !important;
}

/* --- 4. Remove the generic "tech grid" backdrop --- */
.bg-grid,
.bg-grid-fade,
[class*="bg-grid"] {
  background-image: none !important;
}

/* --- 5. (removed) — keep the hero orb's glow; it's a deliberate brand element --- */

/* --- 6. Flatten the soft pill cards to crisp, industrial edges --- */
.rounded-3xl { border-radius: 0.25rem !important; }
.rounded-2xl { border-radius: 0.25rem !important; }
.rounded-xl  { border-radius: 0.25rem !important; }

/* --- 7. Eyebrow labels: deliberate leading rule instead of a floating
   generic mono-uppercase tag. Reads as art direction, not a template default. --- */
.font-mono.uppercase.text-primary::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: #D4AF37;
  vertical-align: middle;
  margin-right: 0.65rem;
  transform: translateY(-0.12em);
}
