/**
 * Entry stylesheet for `@k8o/arte-odyssey`.
 *
 * Composes the design system from focused partials:
 *   - base.css       静的なベースレイヤーとカスタムバリアント
 *   - tokens.css     デザイントークン（:root / .dark / @theme inline）
 *   - utilities.css  カスタムユーティリティ
 *
 * This file together with its imports is the single source of truth for
 * design tokens. `tailwind-token-extractor` reads it and writes
 * `tokens.generated.ts` — run `pnpm generate:tokens` after editing any partial.
 */

@import 'tailwindcss';
@import './base.css';
@import './tokens.css';
@import './utilities.css';
@source '../components';
/* The json-render / openui integrations' renderers emit utility classes too
   (e.g. card padding), so they must be scanned alongside components — else a
   class only used in a renderer (not in any component) is never generated. */
@source '../integrations';
