@layer modules {
    @layer uikit-modules {/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
.Spinner-module__spinner--mX61mvdH {
  display: inline-block;
  width: 1em;
  width: var(--spinner-size, 1em);
  height: 1em;
  height: var(--spinner-size, 1em);
}
/* Clip loader style - spinning arc (matches react-spinners/ClipLoader) */
.Spinner-module__spinnerClip--qMJ0JDSS {
  border: 0.15em solid transparent;
  border-top-color: currentColor;
  border-top-color: var(--spinner-color, currentColor);
  border-radius: 50%;
  animation: Spinner-module__spinnerRotate--UU63nwQ- 0.75s linear infinite;
}
/* Ring loader style - spinning ring with gap */
.Spinner-module__spinnerRing--zaJqmAvf {
  border: 0.15em solid rgba(128, 128, 128, 0.2);
  border-top-color: currentColor;
  border-top-color: var(--spinner-color, currentColor);
  border-radius: 50%;
  animation: Spinner-module__spinnerRotate--UU63nwQ- 0.75s linear infinite;
}
@keyframes Spinner-module__spinnerRotate--UU63nwQ- {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}@layer modules {
    @layer uikit-modules {/* CSS Module for ButtonPrimary component */
/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/* Higher specificity to ensure proper override of reset styles */
.ButtonPrimary-module__base--wLhggG9y {
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  display: inline-flex;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition:
    0.2s transform,
    0.2s color,
    0.2s background ease;

  font-weight: 600;
  font-family: var(--font-main);
}
  a.ButtonPrimary-module__base--wLhggG9y:hover,
  a.ButtonPrimary-module__base--wLhggG9y:active {
    -webkit-text-decoration: none;
    text-decoration: none;
  }
  .ButtonPrimary-module__animateHover--ypsPaXIm:hover,
  .ButtonPrimary-module__animateHover--ypsPaXIm:focus {
    transform: translateY(-2px);
  }
.ButtonPrimary-module__variantUpgrade--4eImps1l {
  background-color: var(--color-greenPro);
  color: var(--color-neutral-900);
}

  .ButtonPrimary-module__variantUpgrade--4eImps1l:hover {
    background-color: var(--color-greenPro);
    color: var(--color-neutral-900);
  }

  .ButtonPrimary-module__variantUpgrade--4eImps1l:active {
    background-color: var(--color-greenPro);
  }

  .ButtonPrimary-module__variantUpgrade--4eImps1l:focus {
    color: var(--color-neutral-900);
  }
  .ButtonPrimary-module__variantUpgrade--4eImps1l:focus {
    color: var(--color-neutral-900);
  }
.ButtonPrimary-module__variantUpgradeStudio--hp3XPh9j {
  background-color: var(--color-blueStudio);
  color: var(--color-neutral-900);
}

  .ButtonPrimary-module__variantUpgradeStudio--hp3XPh9j:hover {
    background-color: var(--color-blueStudio);
    color: var(--color-neutral-900);
  }

  .ButtonPrimary-module__variantUpgradeStudio--hp3XPh9j:active {
    background-color: var(--color-blueStudio);
  }

  .ButtonPrimary-module__variantUpgradeStudio--hp3XPh9j:focus {
    color: var(--color-neutral-900);
  }
.ButtonPrimary-module__variantDefault--ENJp8i2C {
  background-color: var(--color-inkarnate-gold);
  color: var(--color-neutral-900);
}

  .ButtonPrimary-module__variantDefault--ENJp8i2C:hover {
    background-color: var(--color-inkarnate-gold-hover);
    color: var(--color-neutral-900);
  }

  .ButtonPrimary-module__variantDefault--ENJp8i2C:active {
    background-color: var(--color-inkarnate-gold-pressed);
  }

  .ButtonPrimary-module__variantDefault--ENJp8i2C:focus {
    color: var(--color-neutral-900);
  }
.ButtonPrimary-module__variantDanger--xdrIaTGj {
  background-color: var(--color-danger);
  color: var(--color-neutral-200);
}

  .ButtonPrimary-module__variantDanger--xdrIaTGj:hover {
    background-color: var(--color-danger-hover);
    color: white;
  }

  .ButtonPrimary-module__variantDanger--xdrIaTGj:active {
    background-color: var(--color-danger-pressed);
    color: white;
  }

  .ButtonPrimary-module__variantDanger--xdrIaTGj:focus {
    color: var(--color-neutral-200);
  }
.ButtonPrimary-module__variantGray--Awrio7ml {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ddd;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}

  .ButtonPrimary-module__variantGray--Awrio7ml:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
  }

  .ButtonPrimary-module__variantGray--Awrio7ml:focus {
    color: white;
  }
.ButtonPrimary-module__variantBorder--VhbpDZa9 {
  border-color: var(--color-inkarnate-gold);
  color: white;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
}

  .ButtonPrimary-module__variantBorder--VhbpDZa9:hover {
    border-color: var(--color-inkarnate-gold-hover);
    background-color: rgba(255, 255, 255, 0.067);
    color: white;
  }

  .ButtonPrimary-module__variantBorder--VhbpDZa9:active {
    border-color: var(--color-inkarnate-gold-pressed);
    background-color: rgba(255, 255, 255, 0.133);
  }

  .ButtonPrimary-module__variantBorder--VhbpDZa9[disabled] {
    border: none;
  }
.ButtonPrimary-module__variantBorderDanger--uFe-CbKh {
  border-color: var(--color-danger);
  color: white;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
}

  .ButtonPrimary-module__variantBorderDanger--uFe-CbKh:hover {
    border-color: var(--color-danger-hover);
    background-color: rgba(255, 255, 255, 0.067);
    color: white;
  }

  .ButtonPrimary-module__variantBorderDanger--uFe-CbKh:active {
    border-color: var(--color-danger-pressed);
    background-color: rgba(255, 255, 255, 0.133);
  }

  .ButtonPrimary-module__variantBorderDanger--uFe-CbKh[disabled] {
    border: none;
  }
.ButtonPrimary-module__variantToggleOff--GfDgkbXz {
  background-color: var(--color-neutral-900);
  color: var(--color-beige);
}

  .ButtonPrimary-module__variantToggleOff--GfDgkbXz:hover {
    background-color: var(--color-neutral-600);
  }

  .ButtonPrimary-module__variantToggleOff--GfDgkbXz:active {
    background-color: var(--color-neutral-500);
    color: var(--color-beige);
  }
/* Default gradient variant */
.ButtonPrimary-module__variantDefaultGradient--NTbu3w41 {
  background: var(--gradient-dark-gold);
  color: var(--color-neutral-900);
}

  .ButtonPrimary-module__variantDefaultGradient--NTbu3w41:hover {
    opacity: 0.9;
    color: var(--color-neutral-900);
  }

  .ButtonPrimary-module__variantDefaultGradient--NTbu3w41:active {
    opacity: 0.8;
  }

  .ButtonPrimary-module__variantDefaultGradient--NTbu3w41:focus {
    color: var(--color-neutral-900);
  }
  .ButtonPrimary-module__base--wLhggG9y[disabled].ButtonPrimary-module__loading--8tFgDUA1 {
    cursor: default;
  }

  .ButtonPrimary-module__base--wLhggG9y[disabled]:not(.ButtonPrimary-module__loading--8tFgDUA1) {
    background-color: var(--color-neutral-500);
    color: var(--color-neutral-900);
    cursor: not-allowed;
  }
.ButtonPrimary-module__sizeLarge--APSqTo0v {
  padding: 0 25px;
  height: 45px;
  font-size: 16px;
}
.ButtonPrimary-module__sizeDefault--fdsdrCbt {
  padding: 0 20px;
  height: 36px;
  font-size: 13px;
}
.ButtonPrimary-module__sizeCompact--L7DrlKPv {
  padding: 4px 8px;
  height: 32px;
  font-size: 13px;
}
.ButtonPrimary-module__hiddenContent--BqYpGYI- {
  opacity: 0;
}
.ButtonPrimary-module__iconWrapper--VizEjHZ1 > svg {
  width: 100%;
  height: 100%;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/* Increase specificity to override global button resets */
.ButtonSecondary-module__base--fCciqKpf {
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  display: inline-flex;
  white-space: nowrap;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition: 200ms background ease;

  font-weight: 400;
  font-family: var(--font-main);
}
  a.ButtonSecondary-module__base--fCciqKpf:hover,
  a.ButtonSecondary-module__base--fCciqKpf:active {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: var(--color-neutral-200);
  }
.ButtonSecondary-module__variantDefault--TGdJ8M-B {
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
}
  .ButtonSecondary-module__variantDefault--TGdJ8M-B:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
.ButtonSecondary-module__variantDanger--edv-Z6jw {
  background-color: var(--color-danger);
  color: var(--color-neutral-200);
}

  .ButtonSecondary-module__variantDanger--edv-Z6jw:hover {
    background-color: var(--color-danger-hover);
    color: white;
  }

  .ButtonSecondary-module__variantDanger--edv-Z6jw:active {
    background-color: var(--color-danger-pressed);
    color: white;
  }

  .ButtonSecondary-module__variantDanger--edv-Z6jw:focus {
    color: var(--color-neutral-200);
  }
.ButtonSecondary-module__variantBordered--lSqNlFVu {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-neutral-200);
}

  .ButtonSecondary-module__variantBordered--lSqNlFVu:hover {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.2);
  }

  .ButtonSecondary-module__variantBordered--lSqNlFVu:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ButtonSecondary-module__base--fCciqKpf[disabled].ButtonSecondary-module__loading--6tq1HAMb {
    cursor: default;
  }

  .ButtonSecondary-module__base--fCciqKpf[disabled]:not(.ButtonSecondary-module__loading--6tq1HAMb) {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(221, 221, 221, 0.35); /* high contrast */
    cursor: not-allowed;
  }
.ButtonSecondary-module__hiddenContent--FK4LBBpi {
  opacity: 0;
}
.ButtonSecondary-module__iconWrapper--TxCs8ocU {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ButtonSecondary-module__iconWrapper--TxCs8ocU > svg {
  width: 100%;
  height: 100%;
  width: 18px;
  height: 18px;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/* Increase specificity to override global button resets */
.ButtonText-module__base--QHtuEJ69 {
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  border-radius: 3px;
  display: inline-flex;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition: 200ms background ease;

  font-weight: 400;
  font-family: var(--font-main);
}
.ButtonText-module__variantDefault--U128ScYg {
  color: var(--color-inkarnate-gold);
}

  .ButtonText-module__variantDefault--U128ScYg:hover {
    color: var(--color-inkarnate-gold-hover);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .ButtonText-module__variantDefault--U128ScYg:active {
    color: var(--color-inkarnate-gold-pressed);
  }
.ButtonText-module__variantWhite--GJAVcF-p {
  color: white;
}

  .ButtonText-module__variantWhite--GJAVcF-p:hover {
    color: white;
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .ButtonText-module__variantWhite--GJAVcF-p:active {
    color: white;
  }
.ButtonText-module__variantGray--N0Ui4Yo9 {
  color: var(--color-neutral-400);
}

  .ButtonText-module__variantGray--N0Ui4Yo9:hover {
    color: var(--color-neutral-300);
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .ButtonText-module__variantGray--N0Ui4Yo9:active {
    color: var(--color-inkarnate-gray-pressed);
  }
  .ButtonText-module__base--QHtuEJ69[disabled].ButtonText-module__loading--8GPucVLY {
    color: #464646;
    cursor: default;
  }

  .ButtonText-module__base--QHtuEJ69[disabled]:not(.ButtonText-module__loading--8GPucVLY) {
    color: #464646;
    cursor: not-allowed;
  }
.ButtonText-module__sizeDefault--gIT1OVah {
  font-size: 13px;
}
.ButtonText-module__hiddenContent--PM08U-ED {
  opacity: 0;
}
.ButtonText-module__iconWrapper---pp1honO {
  margin-right: 5px;
  width: 13px;
  height: 13px;
}
.ButtonText-module__iconWrapper---pp1honO > svg {
  width: 100%;
  height: 100%;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.Icons-module__iconYellowFilter--SwkVhx5b {
    filter: brightness(0) saturate(100%) invert(98%) sepia(66%) saturate(2973%) hue-rotate(313deg) brightness(103%) contrast(102%) !important;
}/* Custom Media Queries for PostCSS *//* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.Carousel-module__navigationArrow--FQxeMdEB {
  color: #fff;
  filter: drop-shadow(0px 2px 3px black);
}

.Carousel-module__navigationArrowWrapper--NT1L0n9w {
  transform: translateY(-50%);
}

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/* Hide scrollbar while maintaining scroll functionality */
.Carousel-module__hideScrollbar--wF4zQduR {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.Carousel-module__hideScrollbar--wF4zQduR::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.Checkbox-module__checkbox--P-y3hx9J {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 2px 0;
}

  .Checkbox-module__checkbox--P-y3hx9J:not(.Checkbox-module__disabled--eu8B1k0v) {
    cursor: pointer;
  }
      .Checkbox-module__checkbox--P-y3hx9J:not(.Checkbox-module__disabled--eu8B1k0v):hover .Checkbox-module__label--S81ooMAB {
        color: var(--color-text-muted-bright);
      }
        .Checkbox-module__checkbox--P-y3hx9J:not(.Checkbox-module__disabled--eu8B1k0v):hover > .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__unchecked--infLZqDm {
          background: var(--controls-bg-color-hover);
          border-color: var(--controls-border-color-hover);
        }
        .Checkbox-module__checkbox--P-y3hx9J:not(.Checkbox-module__disabled--eu8B1k0v):hover > .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__checked--xif9o3Vy,
        .Checkbox-module__checkbox--P-y3hx9J:not(.Checkbox-module__disabled--eu8B1k0v):hover > .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__indeterminate--8fzJ41M1 {
          background: #ffe2a2;
        }

  .Checkbox-module__checkbox--P-y3hx9J.Checkbox-module__disabled--eu8B1k0v {
    cursor: default;
    opacity: 50%;
  }

  .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visuallyHiddenCheckbox--vvuRgX8U {
    /* Hide checkbox visually but remain accessible to screen readers. */
    /* Source: https://polished.js.org/docs/#hidevisually */
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visuallyHiddenCheckbox--vvuRgX8U:focus ~ .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__unchecked--infLZqDm {
      background: var(--controls-bg-color-hover);
    }

  .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    min-width: 16px;
    width: 16px;
    height: 16px;
    border-radius: 2px;

    background: var(--controls-bg-color);
    border: 1px solid transparent;
  }
    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__unchecked--infLZqDm {
      box-shadow: var(--controls-shadow);
      border: 1px solid var(--controls-border-color) !important;
    }

    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__bordered--KxwNdqpr {
      border: 1px solid var(--color-neutral-950) !important;
    }
      .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__bordered--KxwNdqpr.Checkbox-module__unchecked--infLZqDm {
        border: 1px solid var(--color-neutral-950) !important;
      }

    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__noBorder--6K1rKs1x {
      border: none !important;
      box-shadow: none !important;
    }
      .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__noBorder--6K1rKs1x.Checkbox-module__unchecked--infLZqDm {
        border: none !important;
        box-shadow: none !important;
      }

    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__checked--xif9o3Vy,
    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__indeterminate--8fzJ41M1 {
      background: var(--color-accent);
    }

      .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__checked--xif9o3Vy.Checkbox-module__disabled--eu8B1k0v, .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__indeterminate--8fzJ41M1.Checkbox-module__disabled--eu8B1k0v {
        background: var(--color-neutral-400);
      }

    .Checkbox-module__checkbox--P-y3hx9J .Checkbox-module__visibleCheckbox--SuYy3zkI.Checkbox-module__small--naq0mmTT {
      width: 12px;
      min-width: 12px;
      height: 12px;
    }

.Checkbox-module__label--S81ooMAB {
  padding-left: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  cursor: pointer;
  flex-grow: 1;
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 400;
}

  .Checkbox-module__label--S81ooMAB.Checkbox-module__labelChecked---J-RIBse {
    color: var(--color-text-primary);
  }

    .Checkbox-module__label--S81ooMAB.Checkbox-module__labelChecked---J-RIBse.Checkbox-module__disabled--eu8B1k0v {
      color: var(--color-neutral-400);
    }

  .Checkbox-module__label--S81ooMAB.Checkbox-module__disabled--eu8B1k0v {
    color: var(--color-neutral-400);
    cursor: default;
  }

.Checkbox-module__asterisk--uZK2Lj7Y {
  margin-left: 4px;
  color: inherit;
}
  .new-editor-ui .Checkbox-module__label--S81ooMAB, .new-art-manager-ui .Checkbox-module__label--S81ooMAB {
    font-weight: 600;
  }

.Checkbox-module__icon--6hguXyGD {
  fill: none;
  stroke: #141414;
  stroke-width: 3px;
}

.Checkbox-module__iconVisible--aJ0ZUWV5 {
  visibility: visible;
}

.Checkbox-module__iconHidden--Krug7xGr {
  visibility: hidden;
}

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.DropdownMenu-module__container--kr2C79CT {
  position: relative;
  display: flex;
  flex-direction: column;
}

.DropdownMenu-module__label--176kgrZ7 {
  margin-bottom: 4px;
}

.DropdownMenu-module__containerLabelLeft--RZaG7Igr {
  display: flex;
  flex-direction: row;
  align-items: center;
}

  .DropdownMenu-module__containerLabelLeft--RZaG7Igr .DropdownMenu-module__label--176kgrZ7 {
    margin-bottom: 0;
  }

.DropdownMenu-module__triggerLinkLabel--UqGo7uOx {
  cursor: pointer;
  display: flex;
  overflow: hidden;
  margin-right: 26px;
}

.DropdownMenu-module__dropdownBtnTrigger--RGnzQKeI {
  cursor: pointer;
  color: var(--controls-text);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 32px;
  min-height: 32px;
  text-align: center;
  background: var(--controls-bg-color);
  box-shadow: var(--controls-shadow);
  position: relative;
  outline: none;
  font-size: 16px;
  border: 1px solid var(--controls-border-color);
  border-radius: 3px;
}

  .DropdownMenu-module__dropdownBtnTrigger--RGnzQKeI > label {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
    text-overflow: ellipsis;
    margin-right: 24px !important;
    overflow: hidden;
    padding: 3px 0;
    font-size: 13px;
    font-weight: 400 !important;
    border-color: var(--controls-border-color-hover);
  }

    .DropdownMenu-module__dropdownBtnTrigger--RGnzQKeI > label .icon:first-child {
      margin-right: 1px;
      position: relative;
      top: 2px;
    }

    .DropdownMenu-module__dropdownBtnTrigger--RGnzQKeI > label.DropdownMenu-module__disabled--a7hcOJF6 {
      cursor: default;
      color: var(--color-neutral-400);
    }

  .DropdownMenu-module__dropdownBtnTrigger--RGnzQKeI:hover {
    cursor: pointer;
    background: var(--controls-bg-color-hover);
    border-color: var(--controls-border-color-hover);
  }

.DropdownMenu-module__dropdownChevronIcon--69ZI4cJn {
  position: absolute;
  right: 3px;
  padding-right: 2px;
  font-size: 12px;
  top: 50%;
  height: 18px;
  margin-top: -8px;
}

.DropdownMenu-module__menuWrapper--6SE7d0pZ {
  position: relative;
  transform-origin: top;
  min-width: 100px;
}

.DropdownMenu-module__menuBackdrop--zDtJ2ttk {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  z-index: 0;
  pointer-events: none;
}

.DropdownMenu-module__menu--EfjsF2GN {
  height: 100%;
  min-width: 100px;
  position: relative;
  z-index: 1;

  color: currentColor;
  outline: none !important;
}

/* Invisible buffer that keeps hover alive while the pointer travels between a
   submenu and its parent item. Root menus must not have it, or it covers the
   trigger and swallows the click that should close the menu. */

.DropdownMenu-module__menuHoverBuffer--kZehK-49::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  pointer-events: auto;
  z-index: -1;
}

.DropdownMenu-module__newSiteUi--fMK-2LU- {
  overflow: hidden;
}

.DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuBackdrop--zDtJ2ttk {
}
  .new-editor-ui .DropdownMenu-module__menuBackdrop--zDtJ2ttk, .new-art-manager-ui .DropdownMenu-module__menuBackdrop--zDtJ2ttk {
  }

  .new-editor-ui .DropdownMenu-module__menu--EfjsF2GN, .new-art-manager-ui .DropdownMenu-module__menu--EfjsF2GN {
    overflow: hidden;
  }

.DropdownMenu-module__ul--ZBwS2NUw {
  list-style: none;
  margin: 0;
  padding: 0px;
  /* z-index: 2;
  position: relative; */
}

.DropdownMenu-module__menuItemContainer--JABFodFg {
  min-width: 80px;
  width: 100%;
  cursor: pointer;
  font-size: 13px;
  margin: 0px;
  padding: 4px 14px 4px 10px;
  background-color: var(--color-neutral-700);
  color: var(--color-text-primary);
  min-height: 34px;
  display: flex;
  white-space: nowrap;
  align-items: center;
}

  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__darkMenuItemContainer--MBj-wUgy {
    background-color: var(--color-black);
    color: var(--color-text-primary);
  }
  /* Match menu border-radius on first/last items */
  .DropdownMenu-module__menuItemContainer--JABFodFg:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__detailsContainer--61FWnllV {
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    padding: 4px 8px;
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__compact--aEZ6Owif {
    padding: 2px 10px;
    min-height: 30px;
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg:focus,
  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerActive--pLMJDRG0 {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo {
    background-color: var(--color-accent);
    color: #110a07;
  }

  .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW {
    color: #6a6a6a;
    background-color: #1f1f1f;
    cursor: default;
    opacity: 0.5;
  }

    .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:hover {
      background-color: #1f1f1f;
    }

    .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:focus {
      background-color: #1f1f1f;
    }

  .DropdownMenu-module__menuItemContainer--JABFodFg .icon {
    width: 18px;
    font-size: 18px;
    height: 18px;
  }

.DropdownMenu-module__separator--618meD3E {
  background: #444;
  height: 1px;
}

/* Styles for dropdown menu items */

.DropdownMenu-module__menuItem--EYCXUwcQ {
  height: 32px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.DropdownMenu-module__menuItemLabel--7Aq8oUIN {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.DropdownMenu-module__menuItemMoreOptions--LVjiSDgI {
  font-size: 20px;
  margin-left: auto;
}

.DropdownMenu-module__menuItemLeft--PqZu39UL {
  height: 32px;
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 8px;
  flex: 1;
}

.DropdownMenu-module__label--176kgrZ7 {
  white-space: nowrap;
  font-size: 13px;
  color: #ddd;
  opacity: 0.35;
  margin-right: 5px;
}
  .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__label--176kgrZ7, .new-editor-ui .DropdownMenu-module__label--176kgrZ7, .new-art-manager-ui .DropdownMenu-module__label--176kgrZ7 {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: #ddd;
    opacity: 1;
    display: block;
  }

  .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg, .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg, .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg {
    background-color: transparent;
  }

    .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg:focus,
    .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerActive--pLMJDRG0,
    .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg:focus,
    .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerActive--pLMJDRG0,
    .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg:focus,
    .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerActive--pLMJDRG0 {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo, .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo, .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo {
      background-color: var(--color-accent);
    }
      .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo:hover, .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo:hover, .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerSelected--4yoDDJOo:hover {
        background-color: var(--color-accent-hover);
      }

    .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW, .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW, .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW {
      opacity: 0.5;
      cursor: default;
    }

      .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:hover,
      .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:focus,
      .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:hover,
      .new-editor-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:focus,
      .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:hover,
      .new-art-manager-ui .DropdownMenu-module__menuItemContainer--JABFodFg.DropdownMenu-module__menuItemContainerDisabled--RSVdIWoW:focus {
        background-color: transparent;
      }

  .DropdownMenu-module__newSiteUi--fMK-2LU- .DropdownMenu-module__separator--618meD3E, .new-editor-ui .DropdownMenu-module__separator--618meD3E, .new-art-manager-ui .DropdownMenu-module__separator--618meD3E {
    background: rgba(255, 255, 255, 0.1);
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.LinkBtn-module__linkBtn--RAOILCLl {
  display: inline-flex;
  -webkit-text-decoration: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  text-align: inherit;
  color: currentColor;
  align-items: center;
}

  .LinkBtn-module__linkBtn--RAOILCLl:hover,
  .LinkBtn-module__linkBtn--RAOILCLl:focus {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__orange--FT9bKlM- {
    color: var(--color-accent);
  }
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__orange--FT9bKlM-.LinkBtn-module__enabled--WjjbUL-y:hover,
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__orange--FT9bKlM-.LinkBtn-module__enabled--WjjbUL-y:focus {
        color: var(--color-accent-hover);
      }

  .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__gray--NERMXRRv {
    color: var(--color-text-muted);
  }
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__gray--NERMXRRv.LinkBtn-module__enabled--WjjbUL-y:hover,
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__gray--NERMXRRv.LinkBtn-module__enabled--WjjbUL-y:focus {
        color: #aaa;
      }

  .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__white--qf4hQ-Z- {
    color: #ddd;
  }
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__white--qf4hQ-Z-.LinkBtn-module__enabled--WjjbUL-y:hover,
      .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__white--qf4hQ-Z-.LinkBtn-module__enabled--WjjbUL-y:focus {
        color: white;
      }

  .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__underlined--Icw9crzJ {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

  .LinkBtn-module__linkBtn--RAOILCLl.LinkBtn-module__disabled--4-oY95Ga {
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
    opacity: 0.3;
    cursor: default;
  }/* Custom Media Queries for PostCSS *//* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.Panel-module__panel--nv5m-3Q3 {
  background: #292929;
  box-shadow:
    inset 0 0 10px #00000033,
    0 0 10px #000000c2;
  border-radius: 5px;
  border: 1px solid var(--color-neutral-800);
}
  .new-editor-ui .Panel-module__panel--nv5m-3Q3, .new-art-manager-ui .Panel-module__panel--nv5m-3Q3 {
    box-shadow: 0 0 10px #000a;
    background: rgba(0, 0, 0, 0.75) !important;
    -webkit-backdrop-filter: blur(25px);
            backdrop-filter: blur(25px);
  }
    .new-editor-ui.perf-disable-blur .Panel-module__panel--nv5m-3Q3, .new-art-manager-ui.perf-disable-blur .Panel-module__panel--nv5m-3Q3 {
      -webkit-backdrop-filter: none;
              backdrop-filter: none;
      background: var(--color-neutral-950) !important;
    }

  .new-editor-ui .Panel-module__panel--nv5m-3Q3.Panel-module__noBlur--DKBhVy99, .new-art-manager-ui .Panel-module__panel--nv5m-3Q3.Panel-module__noBlur--DKBhVy99 {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: var(--color-neutral-950) !important;
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.TextInput-module__input---ivAl2Mg {
  display: inline-flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;

  font-style: normal;
  font-weight: 400;
  line-height: normal;

  color: var(--color-neutral-200);
  border: none;

  outline: none;
  background: none;
}

  .TextInput-module__input---ivAl2Mg.TextInput-module__sizeDefault--1HJrpclE {
    height: 40px;
    font-size: 16px;
    margin-top: -1.5px;
    padding: 9px 15px;
  }

  .TextInput-module__input---ivAl2Mg.TextInput-module__sizeSmall--yEsLWoXd {
    height: 32px;
    font-size: 13px;
    margin-top: -1.5px;
    padding: 6px 10px;
  }

  .TextInput-module__input---ivAl2Mg.TextInput-module__sizeXs--L8ec31iI {
    height: 20px;
    font-size: 12px;
    margin-top: -1.5px;
    padding: 4px 8px;
  }

  .TextInput-module__input---ivAl2Mg.TextInput-module__withIcon--NxzJkEwx {
    padding-left: 2px;
  }

  .TextInput-module__input---ivAl2Mg::-moz-placeholder {
    color: var(--color-neutral-200);
    opacity: 0.5;
  }

  .TextInput-module__input---ivAl2Mg::placeholder {
    color: var(--color-neutral-200);
    opacity: 0.5;
  }

  .TextInput-module__input---ivAl2Mg.TextInput-module__disabled--9BGb1e1y {
    cursor: not-allowed;
    opacity: 0.1;
  }

.TextInput-module__iconWrapper--EZlxJt21 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 4px 0 8px;
}

  .TextInput-module__iconWrapper--EZlxJt21 > svg {
    width: 16px;
    height: 16px;
  }

  .TextInput-module__iconWrapper--EZlxJt21.TextInput-module__sizeSmall--yEsLWoXd {
    width: 20px;
    height: 32px;
    font-size: 13px;
  }

  .TextInput-module__iconWrapper--EZlxJt21.TextInput-module__sizeXs--L8ec31iI {
    width: 15px;
    height: 20px;
  }

  .TextInput-module__iconWrapper--EZlxJt21.TextInput-module__sizeDefault--1HJrpclE {
    width: 30px;
    height: 40px;
    margin-top: -1.5px;
    font-size: 16px;
  }

  .TextInput-module__iconWrapper--EZlxJt21.TextInput-module__disabled--9BGb1e1y {
    opacity: 0.2;
  }

.TextInput-module__clearBtnWrapper--WqbRaY7K {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  opacity: 0.5;
}

  .TextInput-module__clearBtnWrapper--WqbRaY7K.TextInput-module__clearBtnWrapperEmpty--jj-1ZNFo {
    opacity: 0;
  }

  .TextInput-module__clearBtnWrapper--WqbRaY7K:hover {
    opacity: 1;
  }

    .TextInput-module__clearBtnWrapper--WqbRaY7K:hover.TextInput-module__clearBtnWrapperEmpty--jj-1ZNFo {
      opacity: 0;
    }

.TextInput-module__container--ie7nQ3Kl {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
}

  .TextInput-module__container--ie7nQ3Kl.TextInput-module__invalid--Jycc49Dj {
    border-color: var(--color-reds-signal);
  }
    .TextInput-module__container--ie7nQ3Kl.TextInput-module__invalid--Jycc49Dj:hover {
      background: var(--color-neutral-700);
      border-color: var(--color-reds-signal);
    }

  .TextInput-module__container--ie7nQ3Kl.TextInput-module__sizeDefault--1HJrpclE {
    height: 40px;
  }
  .TextInput-module__container--ie7nQ3Kl.TextInput-module__sizeSmall--yEsLWoXd {
    height: 32px;
  }

  .TextInput-module__container--ie7nQ3Kl.TextInput-module__sizeXs--L8ec31iI {
    height: 20px;
  }

  .TextInput-module__container--ie7nQ3Kl {

  background: rgba(255, 255, 255, 0.15);
        }

  .TextInput-module__container--ie7nQ3Kl.TextInput-module__disabled--9BGb1e1y {
    cursor: not-allowed;
  }

  .TextInput-module__container--ie7nQ3Kl.TextInput-module__variantPlain--6Hn9GIrs {
    border: none;
    border-radius: none;
  }
    .TextInput-module__container--ie7nQ3Kl:not(.TextInput-module__disabled--9BGb1e1y):not(.TextInput-module__invalid--Jycc49Dj):hover {
      background: rgba(255, 255, 255, 0.2);
    }

.new-editor-ui .TextInput-module__container--ie7nQ3Kl {
  border-color: transparent !important;
}

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/* Spinner container styles */
.NumberInputBox-module__spinnerContainer--sZ6vTlIS {
  display: flex;
  flex-direction: column;
  z-index: var(--z-index-sticky);
  position: absolute;
  top: 0;
  height: 32px;
}
.NumberInputBox-module__spinnerContainerWithReset--4lkxl3BV {
  right: 12px;
}
.NumberInputBox-module__spinnerContainerNoReset---lWJgYqW {
  right: 0;
}
/* Spinner button styles */
.NumberInputBox-module__spinnerButton--kM6I9-og {
  flex: 1;
  display: flex;
  align-items: center;
  cursor: pointer !important;
  justify-content: center;
  height: 14px;
  width: 12px;
  color: #aaa;
  background: #fff2;
  font-size: 8px;
  transition: opacity 0.2s;
  transform: scale(1);
}
.NumberInputBox-module__spinnerButton--kM6I9-og:hover {
  background: #fff4;
  color: #fff;
}
.NumberInputBox-module__spinnerButtonVisible--I7aOqp5W {
  opacity: 1;
}
.NumberInputBox-module__spinnerButtonHidden--e2qp6iPH {
  opacity: 0;
}
.NumberInputBox-module__spinnerButtonUp--cvZOqdJe:active {
  transform: translateY(-2px);
}
.NumberInputBox-module__spinnerButtonDown--tJ-LJDwa:active {
  transform: translateY(2px);
}
.NumberInputBox-module__spinnerButtonDisabled--QQixac40 {
  color: #aaa;
}
.NumberInputBox-module__spinnerButtonDisabled--QQixac40:hover {
  cursor: default !important;
  background: #fff2;
}
/* Reset button styles */
.NumberInputBox-module__resetBtn--RqUp7xzJ {
  font-size: 24px;
  color: #aaa;
  position: absolute;
  display: inline-flex;
  height: 32px;
  width: 12px;
  top: 0;
  right: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: #fff2;
  align-items: center;
  transition: opacity 0.2s;
}
.NumberInputBox-module__resetBtn--RqUp7xzJ:hover {
  background: #fff4;
  color: #fff;
}
.NumberInputBox-module__resetBtnVisible--tpKtvzNu {
  opacity: 1;
}
.NumberInputBox-module__resetBtnHidden--77M40bjn {
  opacity: 0;
}
.NumberInputBox-module__resetBtnDisabled--DDlIfnJs:hover {
  cursor: default;
  color: #aaa;
  background: #fff2;
}
/* Input styles */
.NumberInputBox-module__input--lKhPH7X7 {
  padding: 2px 4px 2px 8px;
  font-size: 13px;
  border: none;
  background: transparent;
  color: #ddd;
  height: 32px;
  outline: none;
  box-sizing: border-box;
}
.NumberInputBox-module__input--lKhPH7X7:disabled {
  color: #aaa;
}
.NumberInputBox-module__inputWide--WcF7uc9I {
  width: 71px;
}
.NumberInputBox-module__inputNormal--Og3OK6C2 {
  width: 64px;
}
/* Wrapper styles */
.NumberInputBox-module__wrapper--QFyJ1p8B {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}
.NumberInputBox-module__wrapper--QFyJ1p8B:has(input:focus) {
  background: rgba(255, 255, 255, 0.15);
}
.NumberInputBox-module__wrapper--QFyJ1p8B:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.NumberInputBox-module__wrapperWithSpinnerOrReset--cZUFKbmH {
}
.NumberInputBox-module__wrapperNoPadding--nu7NS9vG {
  padding-right: 0;
}
/* Large input variant */
.NumberInputBox-module__largeInput--uB6f42xY input {
  height: 40px;
  padding: 2px 2px 4px 15px;
}
.NumberInputBox-module__largeInput--uB6f42xY > span,
.NumberInputBox-module__largeInput--uB6f42xY > button {
  height: 40px;
  width: 15px;
}
.NumberInputBox-module__largeInput--uB6f42xY > span > button {
  width: 15px;
  font-size: 8px;
}
.NumberInputBox-module__largeInput--uB6f42xY .NumberInputBox-module__spinnerContainerWithReset--4lkxl3BV {
  right: 15px;
}
.NumberInputBox-module__largeInput--uB6f42xY .NumberInputBox-module__spinnerContainerNoReset---lWJgYqW {
  right: 0;
}
/* Small input variant */
.NumberInputBox-module__smallInput--Bi7HPBSl input {
  height: 20px;
  width: 40px;
  padding: 2px 2px 4px 4px;
}
.NumberInputBox-module__smallInput--Bi7HPBSl > span,
.NumberInputBox-module__smallInput--Bi7HPBSl > button {
  height: 20px;
  width: 15px;
}
.NumberInputBox-module__smallInput--Bi7HPBSl > span > button {
  width: 15px;
  font-size: 8px;
}
.NumberInputBox-module__smallInput--Bi7HPBSl .NumberInputBox-module__spinnerContainerWithReset--4lkxl3BV {
  right: 15px;
}
.NumberInputBox-module__smallInput--Bi7HPBSl .NumberInputBox-module__spinnerContainerNoReset---lWJgYqW {
  right: 0;
}
/* Alt input variant */
.NumberInputBox-module__altInput--IHxNRdLl {
  border-radius: 0;
  font-size: 12px;
  width: 50px;
  height: 25px;
}
.NumberInputBox-module__altInput--IHxNRdLl input {
  width: 50px;
  height: 25px;
  font-size: 12px;
  background-color: #1f1f1f;
  border: 1px solid #464646;
}
/* Simple input variant */
.NumberInputBox-module__simpleInput--GbhlX4-a {
  border: none;
  background: transparent;
}
.NumberInputBox-module__simpleInput--GbhlX4-a input {
  text-align: right;
  padding-left: 0px;
  width: 48px;
  height: 20px;
  border-radius: 4px;
}
/* Attention state */
.NumberInputBox-module__attention--1t9IKGH4 {
  box-shadow: 0 0 0 1px #ffcd5a !important;
}
/* Simple variant spinner controls */
.NumberInputBox-module__simpleSpinnerContainer--SQMh-J4V {
  margin-left: 2px;
  display: flex;
  height: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  /* top: -3px; */
}
.NumberInputBox-module__simpleSpinnerBtn--KtVnpX7S {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.NumberInputBox-module__simpleSpinnerBtnUp--Brlr0rCs {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin: -5px -5px 0 -5px;
  padding: 5px 5px 0 5px;
}

  .NumberInputBox-module__simpleSpinnerBtnUp--Brlr0rCs svg {
    position: relative;
    top: 1px;
  }
.NumberInputBox-module__simpleSpinnerBtnDown--RF01UHyO {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin: 0 -5px -2px -5px;
  padding: 0 5px 2px 5px;
}
.NumberInputBox-module__simpleSpinnerIcon--AJzZ399U {
  height: 10px;
  width: 12px;
  border-radius: 2px;
  padding: 0 2px;
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .NumberInputBox-module__simpleSpinnerIcon--AJzZ399U svg {
    height: 10px;
  }
.NumberInputBox-module__simpleSpinnerIcon--AJzZ399U:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.75;
}
.NumberInputBox-module__simpleSpinnerIcon--AJzZ399U:active {
  color: white;
  opacity: 1;
}
.new-editor-ui .NumberInputBox-module__wrapper--QFyJ1p8B {
  border-color: transparent !important;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/* Label styles for InputLabelWrapper */
.InputLabelWrapper-module__label--AEAHJU-x {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-neutral-200);
}
.InputLabelWrapper-module__label--AEAHJU-x.InputLabelWrapper-module__sizeSmall--87ydOX01 {
  font-size: 13px;
}
.InputLabelWrapper-module__label--AEAHJU-x.InputLabelWrapper-module__sizeDefault--gU0-iuwS {
  font-size: 16px;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.Slider-module__containerWrapper--XBvf73nz {
  display: block;
  outline: none;
  width: 100%;
}

.Slider-module__container--Xl2-XxYk {
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
}

.Slider-module__containerSelectNone--f0iHLiJE {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.Slider-module__slider--tMZI26Hh {
  display: block;
  margin: 0px 10px;
  height: 20px;
  width: 100%;
  background: transparent;

  position: relative;
  cursor: pointer;
}

  .Slider-module__slider--tMZI26Hh .Slider-module__offsetContainer--k3fiDYFh {
    position: absolute;
  }

  .Slider-module__slider--tMZI26Hh:focus {
    outline: none;
  }

.Slider-module__sliderNoMargin--hKtHi5yF {
  margin-right: 0;
  margin-left: 0;
}

.Slider-module__sliderWithAfterInput--hFslV-WZ {
  margin-right: 8px;
}

.Slider-module__sliderGrayscale--8a6h-uWy {
  margin-top: 10px;
}

/* Thumb styles */

.Slider-module__thumb--Uxyp6MHh {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background-color: #e9e9e9;
  padding: 5px;
  outline: none;
}

.Slider-module__thumbGrayscale--YXU-h1Ed {
  height: 18px;
  width: 18px;
  outline: none;
  overflow: visible;
  top: calc(50% - 9px);
  filter: drop-shadow(0 0 3px #000);
}

/* Animation for external value changes */

/* react-slider uses inline styles for left/width, so we need to use transition: all */

.Slider-module__thumbAnimated---WYcwCvQ {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.Slider-module__trackAnimated--XEJjqnfe {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Track styles */

.Slider-module__track--cNgFf-Vb {
  height: 15px;
  top: -7px;
}

.Slider-module__trackGrayscale--HW4ysN5t {
  height: 24px;
  top: -10px;
}

.Slider-module__trackInner--x8UzE3hg {
  position: relative;
  height: 4px;
  top: calc(50% - 2px);
}
      .new-editor-ui .Slider-module__slider--tMZI26Hh:hover .Slider-module__thumb--Uxyp6MHh {
        transform: scale(1.2);
      }
      .new-editor-ui .Slider-module__slider--tMZI26Hh:hover .Slider-module__track--cNgFf-Vb {
        filter: brightness(1.1);
      }
      .new-editor-ui .Slider-module__slider--tMZI26Hh:hover .Slider-module__trackGrayscale--HW4ysN5t {
        filter: brightness(1.1);
      }

.Slider-module__trackInnerRounded--IM7tsfnO {
  border-radius: 3px;
}

.Slider-module__trackGrayscaleInner--xSzAvYJr {
  height: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 221, 221, 0.1);
  border-radius: 5px;
}

.Slider-module__trackGrayscaleGradient--BwOLjFII::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, #fff 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Label styles */

.Slider-module__topLabel--D9qJMAiE {
  gap: 2px;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  cursor: ew-resize;
  padding: 2px 0;
  margin: 0 5px 0 0;
  font-size: 12px;
  height: 20px;
}

.Slider-module__labelVertical--0mRPbKLC {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  cursor: ew-resize;
  padding: 2px 0;
  align-items: center;
  font-size: 13px;
  margin: 0 5px 0 0;
}

.Slider-module__labelHorizontal--0jhGE5z9 {
  cursor: ew-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 4px 0;
  margin: 0 5px 0 0;
}

.Slider-module__labelSmall--b9OPLp7O {
  font-size: 12px;
}

.Slider-module__labelMedium--uzjQ5csH {
  font-size: 13px;
}

.Slider-module__asterisk--MZCWLCXx {
  margin-left: 4px;
  color: inherit;
}

.Slider-module__icon--klsWibxj {
  width: 18px;
  margin-right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

  .Slider-module__icon--klsWibxj svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }

.Slider-module__iconSmall--IPBvrexg {
  font-size: 12px;
  width: 20px;
}

.Slider-module__iconMedium--T5EBatKb {
  font-size: 13px;
  width: 20px;
}

/* Layout helpers */

.Slider-module__flexRow--9-wsaWzp {
  position: relative;
  z-index: var(--z-index-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Slider-module__flexItems--gFLqWnRX {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Slider-module__rangeText--bOhiMhO- {
  color: #999;
  font-size: 13px;
}

/* Reset button */

.Slider-module__resetButton--3zOaPxGD {
  margin-left: 4px;
  color: #ddd;
  opacity: 0.75;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Slider-module__resetButton--3zOaPxGD:hover {
  opacity: 1;
}

.Slider-module__resetIcon--PnrPgBYM {
  width: 16px;
  height: 16px;
}

/* Special styles for UI v2 */
    .new-editor-ui .Slider-module__containerWrapper--XBvf73nz label, .new-art-manager-ui .Slider-module__containerWrapper--XBvf73nz label {
      font-size: 13px !important;
      font-weight: 600;
    }

  .new-editor-ui .Slider-module__slider--tMZI26Hh, .new-art-manager-ui .Slider-module__slider--tMZI26Hh {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
    .new-editor-ui .Slider-module__slider--tMZI26Hh .slider, .new-art-manager-ui .Slider-module__slider--tMZI26Hh .slider {
      flex: 1;
    }

/* Slider specific overrides */

.Slider-module__sliderFlex--p-249qtk {
  flex: 1;
  margin-right: 8px;
}

.Slider-module__sliderFlex--p-249qtk > div {
  top: 50%;
}

.Slider-module__sliderFlexHorizontalLabel--D9Oytn1h {
  margin-left: 16px;
}

.Slider-module__sliderFlexNoLabel--Hu-dqPm1 {
  margin-left: 0 !important;
}

/* Container with vertical margin */

.Slider-module__containerVerticalMargin--u-1XUhtT {
  margin-top: -5px;
}

/* For hover states */
  .Slider-module__inputHovered--LeisxFqU:hover,
  .Slider-module__inputHovered--LeisxFqU:focus {
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {

    @layer uikit-modules {/* ColorPicker CSS Module */

/* Main container for react-colorful overrides */

.ColorPicker-module__colorPicker--0nF9K8e9 {
  width: 100%;
  /* Shared swatch size variables - makes swatches square and consistent */
  /* For 240px width with 8 swatches and 4px gaps: (240 - 7*4) / 8 = 26.5px */
  --swatch-gap: 4px;
  --swatch-size: 26px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful {
  max-width: 240px !important;
  max-width: var(--color-picker-width, 240px) !important;
  width: 100% !important;
  height: 180px !important;
  height: var(--color-picker-height, 180px) !important;
  border-radius: 4px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__hue {
  border-radius: 4px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__saturation {
  border-radius: 4px;
  border: none;
  margin-bottom: 10px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__pointer {
  width: 16px;
  height: 16px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__last-control {
  border-radius: 0;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__interactive {
  border-radius: 4px;
}

.ColorPicker-module__colorPicker--0nF9K8e9 .react-colorful__alpha {
  display: none;
}

/* Transparency icon */

.ColorPicker-module__transparencyIcon--R0Ru-yPa {
  width: 18px;
  height: 18px;
  margin-left: -1px;
}

/* Format dropdown button - fixed width */

.ColorPicker-module__formatDropdown--JaP0MU-z {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 50px;
  flex-shrink: 0;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-neutral-200);
}

  .ColorPicker-module__formatDropdown--JaP0MU-z:hover {
    background: rgba(255, 255, 255, 0.1);
  }

/* Copy button */

.ColorPicker-module__copyButton--hFzSK6p0 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  opacity: 0.5;
}

  .ColorPicker-module__copyButton--hFzSK6p0:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
  }

/* Container for preset palette rows */

.ColorPicker-module__presetPaletteContainer--7Wm0p2AD {
  display: flex;
  flex-direction: column;
  gap: var(--swatch-gap);
}

/* Palette row container */

.ColorPicker-module__paletteRow--yA0LiyMm {
  display: flex;
  flex-direction: row;
  gap: var(--swatch-gap);
}

/* Base palette swatch button */

.ColorPicker-module__paletteSwatch--W6cwr4Ii {
  width: var(--swatch-size);
  aspect-ratio: 1;
  border: 1px solid #999;
}

/* Palette swatch for new UI */

.ColorPicker-module__paletteSwatchV2--crWD0EdQ {
  width: var(--swatch-size);
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1px solid var(--color-neutral-600);
}

  .ColorPicker-module__paletteSwatchV2--crWD0EdQ:hover {
    border-color: var(--color-blue-400);
  }

/* Palette section header dropdown trigger */

.ColorPicker-module__paletteHeaderDropdown--Gh6pozD0 {
  cursor: pointer;
  transition: opacity 0.15s ease;
}

  .ColorPicker-module__paletteHeaderDropdown--Gh6pozD0:hover {
    opacity: 0.8;
  }

/* Dynamic palette container - large base square on left, variation swatches on right */

.ColorPicker-module__dynamicPaletteContainer--gpZQ7lr0 {
  display: flex;
  flex-direction: row;
  gap: var(--swatch-gap);
  align-items: stretch;
}

/* Large base color square for dynamic palette - spans 2 rows */

/* Size = 2 swatches + 1 gap between them */

.ColorPicker-module__dynamicPaletteBaseSwatch--xwclifue {
  width: calc(var(--swatch-size)*2 + var(--swatch-gap));
  aspect-ratio: 1;
  border: 1px solid #999;
  flex-shrink: 0;
}

.ColorPicker-module__dynamicPaletteBaseSwatchV2--nMw5dihP {
  width: calc(var(--swatch-size)*2 + var(--swatch-gap));
  aspect-ratio: 1;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid var(--color-neutral-600);
}

  .ColorPicker-module__dynamicPaletteBaseSwatchV2--nMw5dihP:hover {
    border-color: var(--color-blue-400);
  }

/* Container for the variation swatches (2 rows of 6) */

.ColorPicker-module__dynamicPaletteSwatchesContainer--ri-Is0VU {
  display: flex;
  flex-direction: column;
  gap: var(--swatch-gap);
}

/* Row within dynamic palette swatches */

.ColorPicker-module__dynamicPaletteRow--RrOtfya3 {
  display: flex;
  flex-direction: row;
  gap: var(--swatch-gap);
}

/* Individual swatch in dynamic palette variation rows - same size as preset swatches */

.ColorPicker-module__dynamicPaletteSwatch--3PNPWsbj {
  width: var(--swatch-size);
  aspect-ratio: 1;
  border: 1px solid #999;
}

.ColorPicker-module__dynamicPaletteSwatchV2--5afFnGW9 {
  width: var(--swatch-size);
  aspect-ratio: 1;
  border-radius: 2px;
  border: 1px solid var(--color-neutral-600);
}

  .ColorPicker-module__dynamicPaletteSwatchV2--5afFnGW9:hover {
    border-color: var(--color-blue-400);
  }

/* Grouped container for RGB/HSL/HSV inputs - fixed width */

.ColorPicker-module__inputGroup--6CHOtTry {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0 2px;
  height: 28px;
  width: 120px;
  flex-shrink: 0;
}

/* Separator between input fields */

.ColorPicker-module__inputSeparator--96f---Ci {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 1px;
}

/* Container for input + suffix */

.ColorPicker-module__inputWithSuffix--yfI3BNY6 {
  display: flex;
  align-items: center;
  padding: 0 2px;
}

/* Suffix styling (°, %) */

.ColorPicker-module__inputSuffix--uNuGKaYq {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: -2px;
  pointer-events: none;
}

/* Hex prefix (#) */

.ColorPicker-module__hexPrefix--fsJYztQa {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 6px;
}

/* Compact input for color values - minimal styling */

.ColorPicker-module__compactInput--iUlLf8TT {
  width: 28px;
  height: 24px;
  padding: 0;
  font-size: 12px;
  text-align: center;
  color: var(--color-neutral-200);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: inherit;

  /* Hide number input spinners */
}
  .ColorPicker-module__compactInput--iUlLf8TT::-webkit-outer-spin-button,
  .ColorPicker-module__compactInput--iUlLf8TT::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .ColorPicker-module__compactInput--iUlLf8TT {
  -moz-appearance: textfield;
        }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.DragAndDrop-module__Wrapper--wJkW1LSj {
  position: relative;
  list-style: none;
}
    .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__center--bB-e9pxn .DragAndDrop-module__Item--jC2mGDk9 {
      outline: 2px solid var(--color-ocean-blue);
    }
    .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__active--rWMeos53 .DragAndDrop-module__Item--jC2mGDk9 {
      opacity: 0.5;
    }
    .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__clone--koraxiu- .DragAndDrop-module__Item--jC2mGDk9 {
      transform: translate3d(10px, 10px, 0) scale(1.025);
      animation: DragAndDrop-module__pop--y-lzTTaX 150ms cubic-bezier(0.18, 0.67, 0.6, 1.22);
      cursor: grabbing;
    }
    .DragAndDrop-module__Wrapper--wJkW1LSj:hover .DragAndDrop-module__Remove--wsLVBZdH {
      visibility: visible;
    }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__active--rWMeos53):not(.DragAndDrop-module__clone--koraxiu-).DragAndDrop-module__insertBefore--At5kKm9i .DragAndDrop-module__Item--jC2mGDk9:after, .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__active--rWMeos53):not(.DragAndDrop-module__clone--koraxiu-).DragAndDrop-module__insertAfter--NOejtOeG .DragAndDrop-module__Item--jC2mGDk9:after {
        content: '';
        position: absolute;
        background-color: var(--color-ocean-blue);
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertBefore--At5kKm9i .DragAndDrop-module__Item--jC2mGDk9:after, .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertAfter--NOejtOeG .DragAndDrop-module__Item--jC2mGDk9:after {
        top: 0;
        bottom: 0;
        width: 2px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertBefore--At5kKm9i.DragAndDrop-module__clone--koraxiu- {
        margin-left: -75px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertBefore--At5kKm9i .DragAndDrop-module__Item--jC2mGDk9:after {
        left: -5px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertAfter--NOejtOeG.DragAndDrop-module__clone--koraxiu- {
        margin-left: 75px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj:not(.DragAndDrop-module__vertical---gOHgPym).DragAndDrop-module__insertAfter--NOejtOeG .DragAndDrop-module__Item--jC2mGDk9:after {
        right: -5px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertBefore--At5kKm9i .DragAndDrop-module__Item--jC2mGDk9:after, .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertAfter--NOejtOeG .DragAndDrop-module__Item--jC2mGDk9:after {
        left: 0;
        right: 0;
        height: 2px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertBefore--At5kKm9i.DragAndDrop-module__clone--koraxiu- {
        margin-top: -125px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertBefore--At5kKm9i .DragAndDrop-module__Item--jC2mGDk9:after {
        top: -1px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertAfter--NOejtOeG.DragAndDrop-module__clone--koraxiu- {
        margin-bottom: 125px;
      }
      .DragAndDrop-module__Wrapper--wJkW1LSj.DragAndDrop-module__vertical---gOHgPym.DragAndDrop-module__insertAfter--NOejtOeG .DragAndDrop-module__Item--jC2mGDk9:after {
        bottom: -1px;
      }

.DragAndDrop-module__Item--jC2mGDk9 {
  border-radius: 5px;
  position: relative;
  display: block;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  touch-action: none;
  width: 100%;
}
  .DragAndDrop-module__Item--jC2mGDk9.DragAndDrop-module__draggable--lGmrhQYy {
    cursor: grab;
  }

@keyframes DragAndDrop-module__fadeIn--wgj6pRk- {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes DragAndDrop-module__pop--y-lzTTaX {
  0% {
    transform: translate3d(0px, 0px, 0) scale(1);
  }
  100% {
    transform: translate3d(10px, 10px, 0) scale(1.025);
  }
}

.DragAndDrop-module__Items--JifWCxBx {
  display: grid;
  margin: 0;
  padding: 0;
}
  .DragAndDrop-module__Items--JifWCxBx.DragAndDrop-module__horizontal--SOaxQh7q {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
  }

  .DragAndDrop-module__Items--JifWCxBx.DragAndDrop-module__grid--F7MitdC- {
    gap: 8px;
    display: grid;
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.OrderableList-module__wrapper--XHgf-ELX {
  border-radius: 5px;
  overflow: hidden;
}

.OrderableList-module__itemWrapper--meDI5MPj {
  padding: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.OrderableList-module__item--AjZ84azJ {
  background: var(--color-neutral-800);
}
  .OrderableList-module__item--AjZ84azJ:hover {
    background: var(--color-neutral-700);
  }

.OrderableList-module__addButton--zjTSD2e7 {
  background: var(--color-neutral-600);
  cursor: pointer;
}
  .OrderableList-module__addButton--zjTSD2e7:hover {
    background: var(--color-neutral-700);
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.RadioButton-module__label--ZwaDLYAK {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.RadioButton-module__button--8lTlrxam {
  flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  margin: 0;
  margin-right: 6px;
  border-radius: 50%;
  border: 1px solid var(--color-neutral-300);
  width: 14px;
  height: 14px;
  position: relative;
  cursor: pointer;
}
  .RadioButton-module__button--8lTlrxam:checked {
    border-color: var(--color-accent);
  }

  .RadioButton-module__button--8lTlrxam:after {
    content: '';
    display: inline-block;
    visibility: visible;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    box-shadow: inset 1em 1em var(--color-accent);
    position: absolute;
    left: 50%;
    top: 50%;
    transition: 75ms transform;
    transform: translate(-50%, -50%) scale(0);
  }

  .RadioButton-module__button--8lTlrxam:checked:after {
    background-color: var(--color-accent);
    transform: translate(-50%, -50%) scale(1);
  }
  .RadioButton-module__button--8lTlrxam:disabled {
    opacity: 0.5;
  }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.SortDirectionToggle-module__sortToggle--hpjemagA {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  height: 12px;
}
.SortDirectionToggle-module__caret--gGeXKGJe {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
.SortDirectionToggle-module__caret--gGeXKGJe.SortDirectionToggle-module__up--gDMoh1oP {
  border-bottom: 3px solid var(--color-text-muted-bright);
  margin-bottom: 2px;
}
.SortDirectionToggle-module__caret--gGeXKGJe.SortDirectionToggle-module__down--SHskV4on {
  border-top: 3px solid var(--color-text-muted-bright);
}
.SortDirectionToggle-module__caret--gGeXKGJe.SortDirectionToggle-module__active--MAKyyDSG {
  opacity: 1;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {
  .TabButtons-module__tabButtonGroup--e21CvM69.TabButtons-module__buttons--ppZdVH-p {
    background: var(--color-neutral-800);
    border-radius: 3px;
    display: flex;
    height: 34px;
    align-items: center;
  }
  .TabButtons-module__tabButtonGroup--e21CvM69.TabButtons-module__headings--6oy9oZ7C {
    display: flex;
    align-items: flex-end;
    margin: 15px 0;
  }

.TabButtons-module__tabButton--eUjC89nS {
  position: relative;
}

  .TabButtons-module__tabButton--eUjC89nS.TabButtons-module__buttons--ppZdVH-p {
    height: 28px;
    text-align: center;
    color: white;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    transition:
      0.2s background-color ease,
      0.2s color ease;
  }
    .TabButtons-module__tabButton--eUjC89nS.TabButtons-module__buttons--ppZdVH-p.TabButtons-module__active--4-BG9a-K {
      background-color: var(--color-ocean-blue);
      color: #fff;
    }

  .TabButtons-module__tabButton--eUjC89nS.TabButtons-module__headings--6oy9oZ7C {
    font-size: 1.5em;
    color: var(--color-text-base);
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    margin-right: 15px;
    padding-bottom: 5px;
  }
    .TabButtons-module__tabButton--eUjC89nS.TabButtons-module__headings--6oy9oZ7C.TabButtons-module__active--4-BG9a-K {
      color: var(--color-inkarnate-gold);
    }

      .TabButtons-module__tabButton--eUjC89nS.TabButtons-module__headings--6oy9oZ7C.TabButtons-module__active--4-BG9a-K:after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-inkarnate-gold);
      }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {
    @layer uikit-modules {/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
.Table-module__tableContainer--s9jkBPVI {
  width: 100%;
  background-color: var(--color-neutral-800);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  padding: 17px;
  font-weight: 600;
  font-size: var(--font-size-sm);
}
.Table-module__collapsedContainer--9oYAVKjl {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.Table-module__compact--8xTxS5Iw {
  font-size: 13px;
}
.Table-module__compactHeader--x59MuHAM {
  border-top-right-radius: 3px;
  background-color: var(--color-neutral-600);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
.Table-module__compactHeaderCell--8KIwFPvK {
  background-color: var(--color-neutral-600);
  padding: 17px;
  font-weight: 600;
}
.Table-module__containedHeader--SZgyiS4C {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.Table-module__defaultRow--7bmRkzZG {
  border-bottom: 1px solid var(--color-neutral-400);
}
  .Table-module__compactRow---CYQnQVK:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }
.Table-module__compactCell--MkEopLjk {
  padding: 17px;
}

  .Table-module__compactCell--MkEopLjk:not(:last-child) {
    border-right: 1px solid #dddddd1a;
  }
.Table-module__even--LNRTv1Uv {
  background-color: var(--color-neutral-800);
}
.Table-module__odd--Vte7CpKy {
  background-color: var(--color-neutral-700);
}
.Table-module__tableWrapper--eVVCksVD {
  /* Ensure the table container never causes parent to scroll */
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
}

  .Table-module__tableWrapper--eVVCksVD::-webkit-scrollbar-track {
    background-color: transparent !important;
    -webkit-transition: 0.2s background;
    transition: 0.2s background;
  }
  .Table-module__tableWrapper--eVVCksVD::-webkit-scrollbar {
    width: 7px !important;
    height: 7px !important;
    background-color: transparent !important;
    -webkit-transition: 0.2s background;
    transition: 0.2s background;
  }
  .Table-module__tableWrapper--eVVCksVD::-webkit-scrollbar-thumb {
    border-radius: 4px !important;
    background: transparent !important;
    visibility: visible !important;
    -webkit-transition: 0.2s background;
    transition: 0.2s background;
  }

  .Table-module__tableWrapper--eVVCksVD ::-webkit-scrollbar-corner {
    display: none !important;
  }
    .Table-module__tableWrapper--eVVCksVD:hover::-webkit-scrollbar-track:vertical {
      background: linear-gradient(90deg, transparent 0%) !important;
    }
    .Table-module__tableWrapper--eVVCksVD:hover::-webkit-scrollbar-track:horizontal {
      background: linear-gradient(to bottom, transparent 0%) !important;
    }
    .Table-module__tableWrapper--eVVCksVD:hover::-webkit-scrollbar {
      width: 7px !important;
      height: 7px !important;
      background: transparent !important;
    }
    .Table-module__tableWrapper--eVVCksVD:hover::-webkit-scrollbar-thumb {
      border-radius: 4px !important;
      background: #363636 !important;
      visibility: visible !important;
    }
.Table-module__table--lEoUpGfb {
  /* Remove table-specific properties that don't work with CSS Grid */
  /* border-collapse: collapse; */
  /* border-spacing: 0; */
  /* table-layout: fixed; */
}
.Table-module__headerCell--rHjGxWp8 {
  height: var(--row-height);
  width: var(--column-width);
}
.Table-module__sortIconCompact--UA7YRoCh {
  top: 60%;
  transform: translateY(-50%);
}
.Table-module__tableRow--iHAEB4GY {
  height: var(--row-height);
  transform: translateY(var(--row-offset));
}
.Table-module__tableCell--IO2FqT6z {
  width: var(--column-width);
}
/* Add missing default cell styles */
.Table-module__defaultRow--7bmRkzZG .Table-module__tableCell--IO2FqT6z {
  padding: 17px;
}

  .Table-module__defaultRow--7bmRkzZG .Table-module__tableCell--IO2FqT6z:not(:last-child) {
    border-right: 1px solid var(--color-neutral-400);
  }
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.TextArea-module__input--rQYhofGB {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  background: none;

  color: var(--controls-text);
  border: none;
  outline: none;
  resize: none;

  /* &.sizeDefault { */
  /* height: 40px; */
  font-size: 16px;
  font-weight: 400;
  margin-top: -1.5px;
  padding: 9px 16px;
  /* } */
}

  .TextArea-module__input--rQYhofGB.TextArea-module__sizeSmall--imVSGkYO {
    height: 100px;
    font-size: 13px;
    margin-top: -1.5px;
    padding: 6px 10px;
  }

  .TextArea-module__input--rQYhofGB::-moz-placeholder {
    color: var(--controls-placeholder-text);
  }

  .TextArea-module__input--rQYhofGB::placeholder {
    color: var(--controls-placeholder-text);
  }

  .TextArea-module__input--rQYhofGB.TextArea-module__disabled--3OjYdyNU {
    cursor: not-allowed;
    opacity: 0.1;
  }

.TextArea-module__inputWrapper--x6MT7xZD {
  position: relative;
  display: flex;

  border: 1px solid var(--controls-border-color);
  border-radius: 3px;
  box-shadow: none;
  box-sizing: border-box;

  background: var(--controls-bg-color);
}

  .TextArea-module__inputWrapper--x6MT7xZD.TextArea-module__invalid--bvoeeiA1 {
    border-color: var(--color-reds-signal);
  }
    .TextArea-module__inputWrapper--x6MT7xZD.TextArea-module__invalid--bvoeeiA1:hover {
      background: var(--color-neutral-700);
      border-color: var(--color-reds-signal);
    }

  .TextArea-module__inputWrapper--x6MT7xZD.TextArea-module__disabled--3OjYdyNU {
    cursor: not-allowed;
    border: 1px solid var(--color-neutral-600);
  }
    .TextArea-module__inputWrapper--x6MT7xZD:not(.TextArea-module__disabled--3OjYdyNU):not(.TextArea-module__invalid--bvoeeiA1):focus-within {
      border-color: var(--controls-border-color-hover);
    }

    .TextArea-module__inputWrapper--x6MT7xZD:not(.TextArea-module__disabled--3OjYdyNU):not(.TextArea-module__invalid--bvoeeiA1):hover {
      border-color: var(--controls-border-color-hover);
      background: var(--controls-bg-color-hover);
    }

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
.react-toggle {
  touch-action: pan-x;

  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  padding: 0;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.toggle-label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-primary);
  font-size: 13px;
  font-weight: 400;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.toggle-asterisk {
  margin-left: 4px;
  color: inherit;
}

.react-toggle-screenreader-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.react-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transition: opacity 0.25s;
}

.react-toggle-track {
  width: 27px;
  height: 16px;
  padding: 0;
  border-radius: 30px;
  background-color: var(--color-neutral-400);
  transition: all 0.2s ease;
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: var(--color-neutral-400);
}

.react-toggle--checked .react-toggle-track {
  background-color: var(--color-accent);
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
  background-color: var(--color-accent);
}

.react-toggle-track-check {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  left: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-check {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.react-toggle-track-x {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0px;
  bottom: 0px;
  margin-top: auto;
  margin-bottom: auto;
  line-height: 0;
  right: 10px;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.react-toggle--checked .react-toggle-track-x {
  opacity: 0;
}

.react-toggle-thumb {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.react-toggle--checked .react-toggle-thumb {
  left: initial;
  right: 2px;
  background-color: #000;
  border-color: var(--color-accent);
}

/* Uncomment the below to enable the blur focus shadow */

/* .react-toggle--focus .react-toggle-thumb {
    -webkit-box-shadow: 0px 0px 3px 2px #0099e0;
    -moz-box-shadow: 0px 0px 3px 2px #0099e0;
    box-shadow: 0px 0px 2px 3px #0099e0;
  }

  .react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
    -webkit-box-shadow: 0px 0px 5px 5px #0099e0;
    -moz-box-shadow: 0px 0px 5px 5px #0099e0;
    box-shadow: 0px 0px 5px 5px #0099e0;
  } */
@layer modules {
    @layer uikit-modules {/*
 * colors.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/*
 * tokens.css — CANONICAL DESIGN TOKENS (Single Source of Truth)
 *
 * All CSS custom properties are declared here. Legacy variables live alongside
 * canonical tokens in clearly marked sections with /* target: X * / comments.
 *
 * Import to get @theme tokens and @utility type classes. This file has no
 * @import 'tailwindcss' so it is safe to compose anywhere.
 *
 * Sub-files (in import order):
 *   tokens/colors.css     — Primitive color scales + legacy named colors
 *   tokens/semantic.css   — Intent-based aliases + legacy text vars
 *   tokens/gradients.css  — Standard gradients + legacy gradient vars
 *   tokens/dimensions.css — Spacing, radii, borders, breakpoints, shadows, z-index + legacy controls
 *   tokens/typography.css — Font families, type scale + legacy font-size vars
 *
 * 📖 Documentation: See README.md and TOKEN_CONSOLIDATION_STRATEGY.md.
 */
/* Primitive color scales: numbered steps with no semantic meaning.
 * For intent-based aliases see semantic.css.
 *
 * ⚠️  Scales matching Tailwind's built-in names (gray, amber, blue, green,
 * teal, violet, purple) are kept in a SEPARATE file (tokens/colors-future.css)
 * and NOT imported — declaring them overrides Tailwind's default utilities
 * (bg-gray-300 etc) which changes the app's appearance. They will be enabled
 * when consumers are migrated away from Tailwind's default palette.
 *
 * The non-colliding scales below are safe to declare in @theme. */
@theme {
  /* ─── Primitive: Rich Black (opacity series off #000002) ─── */
  --color-black-100: #000002;
  --color-black-75: rgb(0 0 2 / 75%);
  --color-black-60: rgb(0 0 2 / 60%);
  --color-black-50: rgb(0 0 2 / 50%);
  --color-black-35: rgb(0 0 2 / 35%);
  --color-black-20: rgb(0 0 2 / 20%);
  --color-black-0: rgb(0 0 2 / 0%);

  /* ─── Primitive: White (opacity series off #ffffff) ─── */
  --color-white-100: #ffffff;
  --color-white-80: rgb(255 255 255 / 80%);
  --color-white-35: rgb(255 255 255 / 35%);
  --color-white-25: rgb(255 255 255 / 25%);
  --color-white-20: rgb(255 255 255 / 20%);
  --color-white-15: rgb(255 255 255 / 15%);
  --color-white-10: rgb(255 255 255 / 10%);
  --color-white-5: rgb(255 255 255 / 5%);
  --color-white-3: rgb(255 255 255 / 3%);

  /* ─── Primitive: Beige ─── */
  --color-beige-950: #422f25;
  --color-beige-900: #574031;
  --color-beige-800: #71503a;
  --color-beige-700: #896247;
  --color-beige-600: #9a714b;
  --color-beige-500: #aa8142;
  --color-beige-400: #c39a59;
  --color-beige-300: #dcb475;
  --color-beige-200: #e9c698;
  --color-beige-100: #f9e5c2;
  --color-beige-50: #fff3df;

  /* ─── Primitive: Broken Red (danger/destructive) ─── */
  --color-broken-red-950: #3a1516;
  --color-broken-red-900: #5f2121;
  --color-broken-red-800: #83272e;
  --color-broken-red-700: #9c3034;
  --color-broken-red-600: #a43a3a;
  --color-broken-red-500: #cf5353;
  --color-broken-red-400: #e56e6e;
  --color-broken-red-300: #eb9797;
  --color-broken-red-200: #f6b8b8;
  --color-broken-red-100: #fdeaea;
  --color-broken-red-50: #fef2f2;

  /* ─── Primitive: Signal Red ─── */
  --color-signal-red-950: #460809;
  --color-signal-red-900: #82181a;
  --color-signal-red-800: #9f0712;
  --color-signal-red-700: #c10007;
  --color-signal-red-600: #e7000b;
  --color-signal-red-500: #fb2c36;
  --color-signal-red-400: #ff6467;
  --color-signal-red-300: #ffa2a2;
  --color-signal-red-200: #ffc9c9;
  --color-signal-red-100: #ffe2e2;
  --color-signal-red-50: #fef2f2;

  /* ─── Primitive: Accent (descriptive names — no Tailwind collision) ─── */
  --color-accent-lemon: #c3e874;
  --color-accent-pale-beige: #c8c394;
  --color-accent-orange-juice: #f1aa68;
  --color-accent-lollipop-pink: #dc5b8a;
  --color-accent-lavender: #b185ff;
  --color-accent-ice-blue: #448fe7;
  --color-accent-tropical-blue: #73e0e5;
  --color-accent-snow-white: #ffffff;

  /* ─── Legacy: Neutral scale ───
   * Migrate to --color-gray-* (once gray scale is enabled). */
  --color-neutral-white: #ffffff;
  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #dddddd;
  --color-neutral-300: #acacac;
  --color-neutral-400: #7a7a7a;
  --color-neutral-500: #464646;
  --color-neutral-600: #363636;
  --color-neutral-700: #292929;
  --color-neutral-800: #1f1f1f;
  --color-neutral-900: #141414;
  --color-neutral-950: #0c0c0c;
  --color-white: #ffffff;
  --color-gray-black: #000002;

  /* ─── Legacy: Neon accent colors ─── */
  --color-neon-green: #aeff35; /* target: var(--color-accent-lemon) */
  --color-neon-beige: #c8c394; /* target: var(--color-accent-pale-beige) */
  --color-neon-orange: #f1aa68; /* target: var(--color-accent-orange-juice) */
  --color-neon-pink: #fb2874; /* target: var(--color-accent-lollipop-pink) */
  --color-neon-purple: #b185ff; /* target: var(--color-accent-lavender) */
  --color-neon-blue: #00b4c0; /* target: var(--color-accent-ice-blue) */
  --color-neon-teal: #66e9ef; /* target: var(--color-accent-tropical-blue) */
  --color-neon-mint: #00ffc2; /* target: var(--color-teal-400) */
  --color-neon-mint-muted: #00ffc24d; /* target: var(--color-teal-400) at reduced opacity */

  /* ─── Legacy: Gold / brand ─── */
  --color-inkarnate-gold: #ffcc5a; /* target: ~var(--color-amber-300) */
  --color-inkarnate-gold-hover: #ffe5ab; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-muted: #ffe2a2; /* target: ~var(--color-amber-200) */
  --color-inkarnate-gold-pressed: #ffeec9; /* target: ~var(--color-amber-100) */
  --color-inkarnate-gold-hex: #ffcc5a;
  --color-golden-yellow: #ffca5a;
  --color-accent: #ffcc5a;
  --color-accent-hover: #ffe5ab;
  --color-buttonActiveHover: #ffe2a2;
  --color-buttonActivePressed: #ffeec9;

  /* ─── Legacy: Danger ─── */
  --color-danger: #a43a3a; /* target: var(--color-broken-red-600) */
  --color-danger-hover: #cf5e5e; /* target: var(--color-broken-red-500) */
  --color-danger-pressed: #e56e6e; /* target: var(--color-broken-red-400) */
  --color-error: #a43a3a;
  --color-light-error: #ff6d71; /* target: var(--color-signal-red-400) */
  --color-reds-signal: #db0000; /* target: var(--color-signal-red-700) */

  /* ─── Legacy: Misc named colors ─── */
  --color-beige: #d2c4a6; /* target: var(--color-beige-300) */
  --color-teal: #259099; /* target: var(--color-teal-600) */
  --color-inactiveContent: #d2c4a6;
  --color-ocean-blue: #4d93d6; /* target: var(--color-blue-400) */
  --color-ocean-blue-dark: #2970b3; /* target: var(--color-blue-900) */
  --color-blue-deep: #0d0c43; /* target: var(--color-blue-950) */
  --color-grayscale-white-5: rgba(255, 255, 255, 0.05); /* target: var(--color-white-5) */
}
/* ─── Gray scale (compatibility bridge) ──────────────────────────────────────
 * Keep gray tokens in :root so they can be referenced without redefining
 * Tailwind's full gray scale in @theme.
 *
 * Compatibility scope is intentionally narrow: only the legacy gray shades
 * that were already overridden are declared here. All other gray-* values
 * are inherited from Tailwind defaults to avoid accidental utility remapping.
 *
 * Plan:
 * 1. Migrate utility consumers to semantic tokens or explicit new-gray tokens.
 * 2. Move the gray scale to @theme (see tokens/colors-future.css).
 * 3. Switch all gray shades to the target new-gray palette. */
:root {
  --color-gray-900: #141416;
  --color-gray-800: #1e1e20;
  --color-gray-700: #29292b;
  --color-gray-300: #acacae;
  --color-gray-100: #f5f5f7;
}
/* Intent-based semantic color tokens. Reference these in component styles
 * rather than raw primitive values to ensure design-system consistency. */
@theme {
  /* ─── Semantic: Permissions ─── */
  --color-permission-creator: #05df72;
  --color-permission-creator-hover: #7bf1a8;
  --color-permission-studio: #51a2ff;
  --color-permission-studio-hover: #8ec5ff;

  /* ─── Semantic: Surface — Page ─── */
  --color-surface-page-primary: #000002;
  --color-surface-page-unfocused-bg: rgb(0 0 2 / 35%);
  --color-surface-page-scrollbar: #363638;

  /* ─── Semantic: Surface — Panel ─── */
  --color-surface-panel-solid-primary: #141416;
  --color-surface-panel-solid-secondary: #1e1e20;
  --color-surface-panel-solid-tertiary: #29292b;
  --color-surface-panel-glass-light: rgb(255 255 255 / 5%);
  --color-surface-panel-glass-dark: rgb(0 0 2 / 60%);
  --color-surface-panel-section: rgb(255 255 255 / 5%);
  --color-surface-panel-section-muted: rgb(255 255 255 / 3%);
  --color-surface-panel-header: rgb(255 255 255 / 5%);
  --color-surface-panel-vtt-glass: rgb(15 16 22 / 80%);
  --color-surface-panel-vtt-solid-primary: #0f1016;

  /* ─── Semantic: Surface — Action ─── */
  --color-surface-action-secondary: rgb(255 255 255 / 10%);
  --color-surface-action-secondary-hover: rgb(255 255 255 / 20%);
  --color-surface-action-secondary-disabled: rgb(255 255 255 / 10%);
  --color-surface-action-harmful: #a43a3a;
  --color-surface-action-harmful-hover: #cf5353;
  --color-surface-action-harmful-disabled: #5f2121;
  --color-surface-action-private-tag: #005f5a;
  --color-surface-action-private-tag-hover: #00786f;
  --color-surface-action-contrast: #0c0c0e;
  --color-surface-action-choicechip-unit: rgb(255 255 255 / 10%);
  --color-surface-image-hover-overlay: rgb(255 255 255 / 10%);

  /* ─── Semantic: Surface — Field ─── */
  --color-surface-field-default: rgb(255 255 255 / 10%);
  --color-surface-field-hover: rgb(255 255 255 / 20%);
  --color-surface-field-disabled: rgb(255 255 255 / 5%);
  --color-surface-field-contrast: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Menu ─── */
  --color-surface-menu-item-hover: rgb(255 255 255 / 10%);
  --color-surface-menu-item-default: transparent;
  --color-surface-menu-bg-solid: #0c0c0e;
  --color-surface-menu-bg-glass: rgb(0 0 2 / 60%);
  --color-surface-menu-search: rgb(0 0 2 / 35%);

  /* ─── Semantic: Surface — Slider ─── */
  --color-surface-slider-track-default: #7a7a7c;
  --color-surface-slider-track-hover: #acacae;
  --color-surface-slider-track-disabled: #464648;
  --color-surface-slider-track-mixed: #acacae;
  --color-surface-slider-handle-default: #f5f5f7;
  --color-surface-slider-handle-disabled: #7a7a7c;

  /* ─── Semantic: Surface — Selection ─── */
  --color-surface-selection-active-default: rgb(81 162 255 / 35%);
  --color-surface-selection-active-hover: rgb(81 162 255 / 50%);
  --color-surface-selection-passive-default: rgb(255 255 255 / 10%);
  --color-surface-selection-passive-hover: rgb(255 255 255 / 20%);

  /* ─── Semantic: Text ─── */
  --color-text-primary: #dcdcdb; /* target: #f5f5f7 */
  --color-text-secondary: #acacae;
  --color-text-tertiary: rgb(255 255 255 / 50%);
  --color-text-quaternary: rgb(255 255 255 / 35%);
  --color-text-contrast-primary: #000002;
  --color-text-contrast-secondary: #0c0c0e;
  --color-text-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-text-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-text-success: #05df72;
  --color-text-warning: #cf5353;
  --color-text-highlight: #ffb900;

  /* ─── Legacy: Text ───
   * Migrate to semantic --color-text-* tokens above. */
  --color-text-primary-muted: #dcdcdb80; /* target: var(--color-text-tertiary) */
  --color-text-soft: #d2c4a6; /* target: var(--color-beige-300) */
  --color-text-muted: #888; /* target: var(--color-text-secondary) */
  --color-text-bright: #ffffff; /* target: var(--color-white-100) */
  --color-text-muted-bright: #ddd; /* target: var(--color-gray-200) */

  /* ─── Semantic: Icon ─── */
  --color-icon-primary: #f5f5f7;
  --color-icon-secondary: #acacae;
  --color-icon-tertiary: rgb(255 255 255 / 50%);
  --color-icon-quaternary: rgb(255 255 255 / 35%);
  --color-icon-extra-muted: rgb(255 255 255 / 15%);
  --color-icon-contrast-primary: #000002;
  --color-icon-contrast-secondary: #0c0c0e;
  --color-icon-contrast-tertiary: rgb(0 0 2 / 50%);
  --color-icon-contrast-quaternary: rgb(0 0 2 / 35%);
  --color-icon-success: #05df72;
  --color-icon-warning: #cf5353;
  --color-icon-notification: #cf5353;

  /* ─── Semantic: Border ─── */
  --color-border-thumbnail: rgb(255 255 255 / 10%);
  --color-border-highlight: #ffb900;
  --color-border-warning: #cf5353;
  --color-border-field-default: rgb(255 255 255 / 10%);
  --color-border-field-disabled: rgb(255 255 255 / 5%);
  --color-border-panel-transparent: rgb(255 255 255 / 5%);
  --color-border-panel-transparent-contrast: rgb(0 0 2 / 20%);
  --color-border-panel-solid-primary: #1e1e20;
  --color-border-panel-solid-secondary: #29292b;
  --color-border-panel-solid-tertiary: #363638;
  --color-border-panel-divider: rgb(255 255 255 / 5%);
  --color-border-panel-invisible: transparent;
  --color-border-selection-active: #51a2ff;
  --color-border-selection-passive: rgb(255 255 255 / 10%);

  /* ─── Semantic: Product States ─── */
  --color-product-state-pending: #35597b;
  --color-product-state-rejected: #3e2424;
  --color-product-state-info-missing: #9b6000;

  /* ─── Semantic: Catalog ─── */
  --color-catalog-private-tag: #20515c;
  --color-catalog-private-tag-hover: #397d8c;

  /* ─── Semantic: Paths (editor tool colors) ─── */
  --color-path-shape-stroke: #00ffe1;
  --color-path-shape-node: #005c51;
  --color-path-line-stroke: #ae98ff;
  --color-path-line-node: #331991;
  --color-path-preview-stroke: #ffffff;
  --color-path-preview-fill: rgb(255 255 255 / 50%);
  --color-path-white-node: #363636;
  --color-path-add-stroke: #1bff00;
  --color-path-add-fill: rgb(27 255 0 / 50%);
  --color-path-subtract-stroke: #ff0000;
  --color-path-subtract-fill: rgb(255 0 0 / 50%);

  /* ─── Semantic: Twitch ─── */
  --color-twitch-purple: #9146ff;
  --color-twitch-ice: #f0f0ff;

  /* ─── Semantic: Accent numeric aliases (mirrors Figma special.accent-*) ─── */
  --color-accent-1: var(--color-accent-lemon);
  --color-accent-2: var(--color-accent-pale-beige);
  --color-accent-3: var(--color-accent-orange-juice);
  --color-accent-4: var(--color-accent-lollipop-pink);
  --color-accent-5: var(--color-accent-lavender);
  --color-accent-6: var(--color-accent-ice-blue);
  --color-accent-7: var(--color-accent-tropical-blue);
  --color-accent-8: var(--color-accent-snow-white);
}
@theme {
  /* ─── Semantic: Gradients — Standard ─── */
  --gradient-gold: linear-gradient(to right, #ffb900, #fe9a00);
  --gradient-gold-hover: linear-gradient(to right, #ffd230, #ffb900);
  --gradient-gold-disabled: linear-gradient(to right, rgb(255 185 0 / 30%), rgb(254 154 0 / 30%));
  --gradient-gold-subdued: linear-gradient(to right, rgb(255 185 0 / 10%), rgb(254 154 0 / 10%));
  --gradient-deep-blue: linear-gradient(to right, #51a2ff, #2b7fff);
  --gradient-teal: linear-gradient(to right, #46ecd5, #05df72);
  --gradient-harmful: linear-gradient(to right, #9c3034, #83272e);
  --gradient-harmful-hover: linear-gradient(to right, #cf5353, #a43a3a);
  --gradient-harmful-disabled: linear-gradient(
    to right,
    rgb(156 48 52 / 30%),
    rgb(131 39 46 / 30%)
  );

  /* ─── Legacy: Gradient component colors ─── */
  --color-gradient-dark-gold-from: #f1b412;
  --color-gradient-dark-gold-to: #ee8f0c;
  --color-gradient-purchase-blue-from: #12a3f1;
  --color-gradient-purchase-blue-to: #3471ff;
  --color-gradient-cyan-from: #12f17e;
  --color-gradient-cyan-to: #0ceeee;
  --color-gradient-indigo-from: #127ef1;
  --color-gradient-indigo-to: #6135ff;
  --gradient-cyan: linear-gradient(180deg, var(--color-gradient-cyan-from) 0%, var(--color-gradient-cyan-to) 100%);
  --gradient-indigo: linear-gradient(180deg, var(--color-gradient-indigo-from) 0%, var(--color-gradient-indigo-to) 100%);
  --gradient-dark-gold: linear-gradient(180deg, var(--color-gradient-dark-gold-from) 0%, var(--color-gradient-dark-gold-to) 100%);
  --gradient-purchase-blue: linear-gradient(180deg, var(--color-gradient-purchase-blue-from) 0%, var(--color-gradient-purchase-blue-to) 100%);
}
/* Spacing, corner radius, border weight, breakpoints, shadows, and z-index. */
@theme {
  /* ─── Spacing (Figma dimensions.spacing) ─── */
  --spacing-6xs: 1px;
  --spacing-5xs: 2px;
  --spacing-4xs: 4px;
  --spacing-3xs: 6px;
  --spacing-2xs: 8px;
  --spacing-xs: 5px; /* target: 10px — legacy value preserved until consumers are migrated */
  --spacing-sm: 8px; /* target: 12px */
  --spacing-md: 13px; /* target: 16px */
  --spacing-lg: 17px; /* target: 20px */
  --spacing-xl: 24px;
  --spacing-2xl: 32px;
  --spacing-3xl: 40px;
  /* --spacing-4xl through 6xl: intentionally omitted — these names collide with Tailwind's
     built-in --container-4xl/5xl/6xl used by max-w-4xl etc. Declaring them causes max-w-4xl
     to resolve to 48px instead of 56rem. Use --spacing-3xl (40px) + explicit values for larger. */

  /* ─── Corner Radius (Figma dimensions.corner-radius) ───
   * Spelled out in full — deliberately NOT following the sm/md/lg convention used by spacing,
   * border-weight, and breakpoints below. `s`/`l` collide with Tailwind's reserved side suffixes
   * (`rounded-s`/`rounded-l` mean "rounded start/left"), which silently wins over a same-named
   * scale value. And unlike spacing/border-weight, `sm`/`md`/`lg`/`xl`/`2xl` are all already
   * claimed by real, shipped app-web usage at different values (app-web's own legacy radius
   * shim, or Tailwind's raw default for xl/2xl) — reusing those names would silently change
   * live components. Only `xs` had no real conflict, but it's spelled out too for consistency
   * within this scale. */
  --radius-extra-small: 2px;
  --radius-small: 3px;
  --radius-medium: 5px;
  --radius-large: 7px;
  --radius-extra-large: 9px;
  --radius-2x-large: 11px;
  --radius-3x-large: 15px;

  /* ─── Border Weight (Figma dimensions.border-weight) ─── */
  --border-weight-sm: 1px;
  --border-weight-md: 2px;
  --border-weight-selection: 1px;

  /* ─── Breakpoints ─── */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 890px;
  --breakpoint-xl: 1200px;

  /* ─── Box Shadows ─── */
  --shadow-xs: 0 1px 1px 0 rgb(0 0 0 / 20%);
  --shadow-sm: 0 2px 8px 0 rgb(0 0 0 / 30%);
  --shadow-md: 1px 1px 2px 0 rgb(0 0 0 / 50%);

  /* ─── Z-Index - Semantic Layer Scale ─── */
  /* Always use the lowest layer that satisfies your needs. */

  /** Full-bleed page backgrounds that must paint beneath all in-flow content */
  --z-index-beneath: -1;
  /** Editor panels, UI chrome, drag-indicator pseudo-elements */
  --z-index-raised: 100;
  /** Sticky nav bars, site headers */
  --z-index-sticky: 1000;
  /** Dropdown menus, autocomplete lists */
  --z-index-dropdown: 2000;
  /** Full-screen overlays below modal (Recaptcha, Turnstile, WebGL recovery) */
  --z-index-overlay: 4000;
  /** Modal backdrops and containers; use calc(+ N) for stacked modals */
  --z-index-modal: 5000;
  /** Popovers and context menus above a modal */
  --z-index-popover: 6000;
  /** Toast notifications */
  --z-index-toast: 7000;
  /* CAUTION: `above-all` is reserved for elements that must cover everything (ImageViewer, debug
     overlays). Prefer any layer above before reaching for this. */
  --z-index-above-all: 2000000000;

  /* ─── Legacy: Controls ───
   * Used by UIKit form components. Migrate to semantic surface/border tokens. */
  --controls-height: 32px;
  --controls-border-color: rgba(255, 255, 255, 0.1); /* target: var(--color-border-field-default) */
  --controls-border-color-hover: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-hover) */
  --controls-shadow: none;
  --controls-bg-color: rgba(255, 255, 255, 0.15); /* target: var(--color-surface-field-default) */
  --controls-bg-color-hover: rgba(255, 255, 255, 0.2); /* target: var(--color-surface-field-hover) */
  --controls-text: #dcdcdb; /* target: var(--color-text-primary) */
  --controls-placeholder-text: #dcdcdb7a; /* target: var(--color-text-quaternary) */
  --opacity-muted: 0.5;
  --opacity-background: 0.3;
}
/* Font families, heading + body type scale, and composite @utility classes.
 *
 * @utility classes bundle font-size + line-height + font-weight + font-family
 * into a single class (e.g. `type-heading-1`). Use them directly on elements
 * or via the <Typography> component's `variant` prop. */
@theme {
  /* ─── Typography: Font Families ─── */
  /* --font-sans / --font-serif map to Tailwind's font-sans / font-serif utilities. */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Lusitana', serif;
  /* Long-form aliases for direct var() use in CSS modules. */
  --font-family-sans: var(--font-sans);
  --font-family-serif: var(--font-serif);

  /* ─── Legacy: Font aliases ───
   * Migrate to --font-sans / --font-serif. */
  --font-family-primary: 'Inter', 'Open Sans', 'sans-serif'; /* target: var(--font-sans) */
  --font-main: 'Inter', 'Open Sans', 'Arial', sans-serif; /* target: var(--font-sans) */

  /* ─── Legacy: Font sizes ───
   * Migrate to --text-body-* / --text-heading-* scale. */
  --font-size-xxs: 12px; /* target: ~var(--text-body-small) 13px */
  --font-size-xs: 13px; /* target: var(--text-body-small) */
  --font-size-sm: 16px; /* target: var(--text-body-big) */
  --font-size-md: 18px;
  --font-size-lg: 24px; /* target: var(--text-heading-5-sans) */

  /* ─── Typography: Heading scale ─── */
  /*
   * Each heading has a default (Inter/-sans) and -fancy (Lusitana/-serif) variant.
   * --text-*--line-height is picked up by Tailwind v4 as the default line-height
   * for that text utility. --text-*--font-weight is used by the @utility composites.
   */
  --text-heading-1-sans: 56px;
  --text-heading-1-sans--line-height: 68px;
  --text-heading-1-sans--font-weight: 700;
  --text-heading-1-serif: 56px;
  --text-heading-1-serif--line-height: 73px;
  --text-heading-1-serif--font-weight: 700;

  --text-heading-2-sans: 50px;
  --text-heading-2-sans--line-height: 61px;
  --text-heading-2-sans--font-weight: 700;
  --text-heading-2-serif: 50px;
  --text-heading-2-serif--line-height: 65px;
  --text-heading-2-serif--font-weight: 700;

  --text-heading-3-sans: 48px;
  --text-heading-3-sans--line-height: 58px;
  --text-heading-3-sans--font-weight: 700;
  --text-heading-3-serif: 48px;
  --text-heading-3-serif--line-height: 62px;
  --text-heading-3-serif--font-weight: 700;

  --text-heading-4-sans: 36px;
  --text-heading-4-sans--line-height: 44px;
  --text-heading-4-sans--font-weight: 700;
  --text-heading-4-serif: 36px;
  --text-heading-4-serif--line-height: 47px;
  --text-heading-4-serif--font-weight: 700;

  --text-heading-5-sans: 24px;
  --text-heading-5-sans--line-height: 29px;
  --text-heading-5-sans--font-weight: 700;
  --text-heading-5-serif: 24px;
  --text-heading-5-serif--line-height: 31px;
  --text-heading-5-serif--font-weight: 700;

  /* ─── Typography: Body scale (all Inter) ─── */
  --text-body-big: 16px;
  --text-body-big--line-height: 19px;
  --text-body-big--font-weight: 400;

  --text-body-big-emphasized: 16px;
  --text-body-big-emphasized--line-height: 19px;
  --text-body-big-emphasized--font-weight: 600;

  --text-body-big-bold: 16px;
  --text-body-big-bold--line-height: 19px;
  --text-body-big-bold--font-weight: 700;

  --text-body-small: 13px;
  --text-body-small--line-height: 16px;
  --text-body-small--font-weight: 400;

  --text-body-small-emphasized: 13px;
  --text-body-small-emphasized--line-height: 16px;
  --text-body-small-emphasized--font-weight: 600;

  --text-body-small-bold: 13px;
  --text-body-small-bold--line-height: 16px;
  --text-body-small-bold--font-weight: 700;

  --text-body-tiny: 10px;
  --text-body-tiny--line-height: 12px;
  --text-body-tiny--font-weight: 400;

  --text-body-tiny-emphasized: 10px;
  --text-body-tiny-emphasized--line-height: 12px;
  --text-body-tiny-emphasized--font-weight: 700;
}
@utility type-heading-1 {
  font-size: var(--text-heading-1-sans);
  line-height: var(--text-heading-1-sans--line-height);
  font-weight: var(--text-heading-1-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-1-fancy {
  font-size: var(--text-heading-1-serif);
  line-height: var(--text-heading-1-serif--line-height);
  font-weight: var(--text-heading-1-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-2 {
  font-size: var(--text-heading-2-sans);
  line-height: var(--text-heading-2-sans--line-height);
  font-weight: var(--text-heading-2-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-2-fancy {
  font-size: var(--text-heading-2-serif);
  line-height: var(--text-heading-2-serif--line-height);
  font-weight: var(--text-heading-2-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-3 {
  font-size: var(--text-heading-3-sans);
  line-height: var(--text-heading-3-sans--line-height);
  font-weight: var(--text-heading-3-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-3-fancy {
  font-size: var(--text-heading-3-serif);
  line-height: var(--text-heading-3-serif--line-height);
  font-weight: var(--text-heading-3-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-4 {
  font-size: var(--text-heading-4-sans);
  line-height: var(--text-heading-4-sans--line-height);
  font-weight: var(--text-heading-4-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-4-fancy {
  font-size: var(--text-heading-4-serif);
  line-height: var(--text-heading-4-serif--line-height);
  font-weight: var(--text-heading-4-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-heading-5 {
  font-size: var(--text-heading-5-sans);
  line-height: var(--text-heading-5-sans--line-height);
  font-weight: var(--text-heading-5-sans--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-heading-5-fancy {
  font-size: var(--text-heading-5-serif);
  line-height: var(--text-heading-5-serif--line-height);
  font-weight: var(--text-heading-5-serif--font-weight);
  font-family: var(--font-family-serif);
}
@utility type-body-big {
  font-size: var(--text-body-big);
  line-height: var(--text-body-big--line-height);
  font-weight: var(--text-body-big--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-emphasized {
  font-size: var(--text-body-big-emphasized);
  line-height: var(--text-body-big-emphasized--line-height);
  font-weight: var(--text-body-big-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-big-bold {
  font-size: var(--text-body-big-bold);
  line-height: var(--text-body-big-bold--line-height);
  font-weight: var(--text-body-big-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small {
  font-size: var(--text-body-small);
  line-height: var(--text-body-small--line-height);
  font-weight: var(--text-body-small--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-emphasized {
  font-size: var(--text-body-small-emphasized);
  line-height: var(--text-body-small-emphasized--line-height);
  font-weight: var(--text-body-small-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-small-bold {
  font-size: var(--text-body-small-bold);
  line-height: var(--text-body-small-bold--line-height);
  font-weight: var(--text-body-small-bold--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny {
  font-size: var(--text-body-tiny);
  line-height: var(--text-body-tiny--line-height);
  font-weight: var(--text-body-tiny--font-weight);
  font-family: var(--font-family-sans);
}
@utility type-body-tiny-emphasized {
  font-size: var(--text-body-tiny-emphasized);
  line-height: var(--text-body-tiny-emphasized--line-height);
  font-weight: var(--text-body-tiny-emphasized--font-weight);
  font-family: var(--font-family-sans);
}
/*
 * variables.css — Re-export of tokens.css
 *
 * This file exists for backward compatibility with component CSS modules that
 * import it directly. All values now live in tokens.css (the single source of truth).
 *
 * New code should import tokens.css instead.
 */
/* Increase specificity to override global button resets */
.ToggleButton-module__base--qWrnzZb3 {
  cursor: pointer;
  position: relative;
  border-radius: 3px;
  display: inline-flex;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition: 200ms background ease;

  font-weight: 400;
  font-family: var(--font-main);
}
  a.ToggleButton-module__base--qWrnzZb3:hover,
  a.ToggleButton-module__base--qWrnzZb3:active {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: var(--color-neutral-200);
  }
.ToggleButton-module__variantOff--Itx41dQt {
  background-color: var(--color-neutral-900);
  color: var(--color-inactiveContent);
}

  .ToggleButton-module__variantOff--Itx41dQt:hover {
    background-color: var(--color-neutral-600);
  }

  .ToggleButton-module__variantOff--Itx41dQt:active {
    background-color: var(--color-neutral-500);
  }
.ToggleButton-module__variantOn--A5pbJDlX {
  background-color: var(--color-inkarnate-gold);
  color: var(--color-neutral-900);
}

  .ToggleButton-module__variantOn--A5pbJDlX:hover {
    background-color: var(--color-buttonActiveHover);
  }

  .ToggleButton-module__variantOn--A5pbJDlX:active {
    background-color: var(--color-buttonActivePressed);
  }
  .ToggleButton-module__base--qWrnzZb3[disabled].ToggleButton-module__loading--mCARNu3E {
    cursor: default;
  }

  .ToggleButton-module__base--qWrnzZb3[disabled]:not(.ToggleButton-module__loading--mCARNu3E) {
    background-color: var(--color-neutral-600);
    opacity: 0.35;
    cursor: not-allowed;
  }
.ToggleButton-module__sizeDefault--LmLHC4Lj {
  padding: 0 8px;
  height: 30px;
  font-size: 13px;
}
.ToggleButton-module__hiddenContent--dWWgg0Iu {
  opacity: 0;
}
.ToggleButton-module__iconWrapper--YtcsokmM > svg {
  width: 100%;
  height: 100%;
}
/* Custom Media Queries for PostCSS */
/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.KeyboardShortcut-module__shortcut--mI6z0SW1 {
  display: inline-block;
}

.KeyboardShortcut-module__key--HJCCSFbR {
  display: inline-block;
  margin-top: 2px;
  margin-bottom: 2px;
}

.KeyboardShortcut-module__keySizeMd--ySEr7uxp {
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 8px;
}

.KeyboardShortcut-module__keySizeSm--AMIxYnKs {
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
}

.KeyboardShortcut-module__keySizeXs--zQGVCn8c {
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  border-bottom-width: 0;
  margin-bottom: 0;
}

.KeyboardShortcut-module__keyVariantLight--RtEx2KBV {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  color: black;
}

.KeyboardShortcut-module__keyVariantDark--Jv78TaHC {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.KeyboardShortcut-module__keyVariantContext---RA70CVS {
  opacity: 0.35;
  font-size: 10px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ddd;
  text-transform: uppercase;
}

.KeyboardShortcut-module__keySeparator--MltJkd6U {
  display: inline-block;
  margin: 0px 4px;
}

/* Custom Media Queries for PostCSS */

/* Breakpoints for the landing page */
    }
}
@layer modules {@layer uikit-modules {.prompt-module__container--h-yLSF6G {
  z-index: var(--z-index-above-all) !important;
}
  .prompt-module__container--h-yLSF6G .prompt-module__popup--RI-vK8Ye {
    background: #333 !important;
    color: white !important;
    padding: 10px !important;
  }

  .prompt-module__container--h-yLSF6G .prompt-module__title--Baw26LqL {
    font-size: 20px !important;
  }

  .prompt-module__container--h-yLSF6G .prompt-module__title--Baw26LqL,
  .prompt-module__container--h-yLSF6G .prompt-module__input--GpB5ODi- {
    color: white !important;
  }

  .prompt-module__container--h-yLSF6G .prompt-module__confirmButton--MN5mXJzT {
    color: black !important;
    background: var(--color-accent) !important;
  }
    .prompt-module__container--h-yLSF6G .prompt-module__confirmButton--MN5mXJzT:hover {
      background: var(--color-accent-hover) !important;
    }/* Custom Media Queries for PostCSS *//* Breakpoints for the landing page */
    }
}
