/* Landing template — design tokens + Tailwind. `@voltro/ui-shadcn/tokens.css`
 * is the kit's entry point: imports tailwindcss, tw-animate-css, declares
 * the shadcn palette, and registers the @theme mapping. Brand-specific
 * overrides go below. */

@import "@voltro/ui-shadcn/tokens.css";

/* Scan THIS app's source so utility classes used only here (not in
 * the kit) get generated. Every consumer of @voltro/ui-shadcn needs
 * its own @source — once the kit declares one, Tailwind v4's
 * vite-plugin auto-detect stops firing. */
@source "./**/*.{tsx,ts,jsx,js}";

html, body { min-height: 100vh; }

/* Gradient title — use on hero <h1> via `className="gradient-title"`. */
.gradient-title {
  background: linear-gradient(180deg, var(--foreground) 0%, oklch(0.7 0.18 290) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
