@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";/*
 * Tango Vision Design Tokens — v2
 * Single source of truth for all platform colors, spacing, typography.
 *
 * Brand: AI-native building management OS — digital twins for malls,
 * offices, campuses. Dark-first product. Orange (#F8A324) on deep
 * purple (#5B407F). Montserrat for display/UI, Open Sans Light for
 * long-form body. The wordmark is TANGO.VISION with 0.10em tracking.
 *
 * THREE layers of tokens live here:
 *  1) Brand ramp           --tv-*        (hex; constant across themes)
 *  2) shadcn semantic slots --primary, --background, --border, …
 *     as HSL channels (no hsl() wrapper) consumed via hsl(var(--…)).
 *     These drive every @tv/ui React component and the Tailwind preset.
 *  3) v2 semantic tokens   --bg, --fg, --accent-hover, --hairline,
 *     surface tints, status pairs, focus ring — DIRECT values consumed
 *     by the .tv-* component layer in components.css. These are NOT
 *     HSL channels; reference them bare, e.g. background: var(--bg).
 *
 * Theming: the platform toggles dark mode with the `.dark` class
 * (shadcn / next-themes convention). The v2 handoff toggles with
 * [data-theme]. BOTH are supported — `.dark, [data-theme="dark"]`
 * share one block, `:root, [data-theme="light"]` share the other.
 *
 * See CHANGES.md (handoff) + README for the v1 → v2 migration notes.
 *
 * Note: this file intentionally does NOT @import Google Fonts — a
 * nested @import mid-file violates the CSS spec once bundlers inline
 * stylesheets. Import "@tv/design-tokens/fonts.css" first instead.
 */

/* ------------------------------------------------------------------ */

/* 1 · BRAND RAMP — constant across light/dark                         */

/* ------------------------------------------------------------------ */

:root {
  /* ---------- Orange family ----------
     #F8A324 is canonical for digital surfaces (matches the SVG
     logomark). #FFBA07 is the print-stock equivalent and is also the
     focus ring (higher luminance → more visible on dark + purple).
     Never use both within the same UI element. */
  --tv-orange:       #F8A324;   /* CTAs, eyebrows, accents (canonical) */
  --tv-orange-warm:  #FFBA07;   /* print fill, focus ring, logomark fill */
  --tv-orange-soft:  #FECF6E;   /* radar rings, illustration strokes */
  --tv-orange-deep:  #D28D05;   /* pressed/hover-dark, printed ink */

  /* ---------- Purple / blue ---------- */
  --tv-purple-light: #8869AF;   /* top of gradient, lift on dark */
  --tv-purple-mid:   #6B4D93;   /* gradient mid (was --tv-purple-deep in v1) */
  --tv-purple:       #5B407F;   /* brand surface, card bg */
  --tv-purple-deep:  #3F2B5C;   /* deep brand shadow (genuinely darker — v2) */
  --tv-blue-mid:     #2661AF;   /* business-card gradient bottom */
  --tv-blue:         #0D46AB;   /* polygraphy accent, secondary action */

  /* ---------- Data / realtime ---------- */
  --tv-teal:         #2A7884;   /* chart series 04 */
  --tv-teal-bright:  #11DDDB;   /* live/info, chart series 02 */

  /* ---------- Neutrals (warm sand + cool dark) ---------- */
  --tv-black:        #111523;   /* primary ink, dark text on light */
  --tv-ink:          #322927;   /* warm ink, body on paper */
  --tv-gray-500:     #6A6B7A;   /* neutral mid, default icon on light */
  --tv-gray-300:     #9D9386;   /* warm gray, print secondary */
  --tv-gray-200:     #BDBDBD;
  --tv-cool-100:     #D7E4E5;   /* cool tint, dividers on print */
  --tv-sand-100:     #E0DAD3;
  --tv-sand-200:     #CFC8B9;
  --tv-sand-300:     #B5AB9B;
  --tv-white:        #FFFFFF;

  /* ---------- v1 ALIASES (deprecated — remove in v3) ---------- */
  --tv-gray-900:     var(--tv-black);     /* was #17171C — collapsed */
  --tv-gray-700:     var(--tv-ink);       /* was a dup of --tv-ink */
  --tv-gray-100:     var(--tv-cool-100);  /* was cool, mislabeled gray */

  /* ---------- Signature gradients ---------- */
  --tv-gradient-brand:  linear-gradient(180deg, var(--tv-purple) 0%, var(--tv-blue-mid) 100%);
  --tv-gradient-purple: linear-gradient(180deg, color-mix(in srgb, var(--tv-purple-light) 85%, transparent) 0%, color-mix(in srgb, var(--tv-purple-mid) 95%, transparent) 100%);
  --tv-gradient-warm:   linear-gradient(180deg, var(--tv-orange) 0%, var(--tv-orange-deep) 100%);

  /* ---------- Typography ---------- */
  /* --font-display and --font-sans intentionally alias the same family
     (Montserrat). They stay separate so swapping in Gotham Pro for
     display surfaces is a one-token change. */
  --font-display: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans:    "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    "Open Sans", "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step--2: 0.75rem;     /* 12 — captions, eyebrows */
  --step--1: 0.875rem;    /* 14 — small UI */
  --step-0:  1rem;        /* 16 — body */
  --step-1:  1.125rem;    /* 18 */
  --step-2:  1.5rem;      /* 24 — subhead */
  --step-3:  2rem;        /* 32 — H3 */
  --step-4:  2.5rem;      /* 40 — H2 */
  --step-5:  3rem;        /* 48 — H1 */
  --step-6:  4.5rem;      /* 72 — roll-up headline */
  --step-7:  6rem;        /* 96 — hero display */

  --leading-tight: 1.05;
  --leading-snug:  1.2;
  --leading-body:  1.55;
  --leading-loose: 1.7;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.10em;      /* TANGO.VISION wordmark */
  --tracking-xwide:  0.24em;      /* DIGITAL TWINS tag, eyebrows */

  /* ---------- Shape ---------- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;            /* default card */
  --radius-lg:   20px;            /* QR tiles, flyer cards */
  --radius-xl:   28px;            /* hero panels */
  --radius-2xl:  40px;
  --radius-pill: 999px;

  /* ---------- Elevation ---------- */
  --shadow-sm: 0 1px 2px rgba(17,21,35,0.06), 0 1px 1px rgba(17,21,35,0.04);
  --shadow-md: 0 6px 18px rgba(17,21,35,0.10), 0 2px 4px rgba(17,21,35,0.05);
  --shadow-lg: 0 20px 40px rgba(17,21,35,0.16), 0 6px 12px rgba(17,21,35,0.08);
  --shadow-glow-orange: 0 0 0 1px rgba(248,163,36,0.35), 0 10px 30px rgba(248,163,36,0.25);
  --shadow-glow-purple: 0 0 0 1px rgba(91,64,128,0.40), 0 12px 36px rgba(91,64,128,0.30);
  --shadow-glow-teal:   0 0 0 1px rgba(17,221,219,0.30), 0 8px 24px rgba(17,221,219,0.20);

  /* ---------- Spacing (8-point) ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ---------- Motion ---------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   140ms;
  --dur-base:   240ms;
  --dur-slow:   420ms;

  /* ---------- v2 semantic: theme-INVARIANT direct values ---------- */
  /* Always-light surfaces (docs, auth, print) regardless of theme. */
  --bg-page:   #FAFAF7;
  --bg-paper:  #F4F3EE;
  --surface:   #FFFFFF;          /* negative-space white, used sparingly */

  /* Ink for content that always sits on a light surface. */
  --fg-on-light:        #111523;
  --fg-on-light-body:   #322927; /* warm ink for body copy on paper */
  --fg-on-light-muted:  #6A6B7A;
  --fg-mono-light:      rgba(17,21,35,0.55);
  --border-on-light:    rgba(17,21,35,0.08);

  /* Accent companions (the canonical --accent stays HSL for shadcn). */
  --accent-hover: var(--tv-orange-deep);

  /* Status hues. --warning / --info collide with shadcn's HSL slots,
     so they are NOT redefined here as direct values — the .tv-*
     component layer uses --tv-orange / --tv-teal-bright + the tint
     pairs below. --danger is free (shadcn uses --destructive). */
  --danger: #E2533A;

  /* Status tint pairs (background + foreground for badges/banners).
     The -fg-on-dark variants flip per theme further down. */
  --success-bg: rgba(59,181,138,0.16);
  --success-fg: #3BB58A;
  --warning-bg: rgba(248,163,36,0.18);
  --warning-fg: #8A5A07;
  --danger-bg:  rgba(226,83,58,0.16);
  --danger-fg:  #9E3C28;
  --info-bg:    rgba(17,221,219,0.18);
  --info-fg:    #0B8684;
  --neutral-bg: rgba(17,21,35,0.08);
  --neutral-fg: #111523;

  /* Light-surface tint ramp (constant; used by .tv-on-light wrappers). */
  --surface-l-1: rgba(17,21,35,0.03);  /* hover on light */
  --surface-l-2: rgba(17,21,35,0.06);  /* selected on light */
  --surface-l-3: rgba(17,21,35,0.10);  /* heavy fill on light */
}

/* ------------------------------------------------------------------ */

/* 2 + 3 · LIGHT THEME (default) — shadcn HSL slots + v2 direct values */

/*   :root and [data-theme="light"] share this block.                  */

/* ------------------------------------------------------------------ */

:root,
[data-theme="light"] {
  /* --- shadcn HSL channels (consumed via hsl(var(--…))) --- */
  --primary: 35 94% 56%;              /* #F8A324 — Tango orange */
  --primary-foreground: 232 35% 11%;  /* #111523 — ink on orange */

  --background: 60 27% 98%;           /* #FAFAF7 — warm off-white */
  --foreground: 232 35% 11%;          /* #111523 */
  --card: 0 0% 100%;
  --card-foreground: 232 35% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 232 35% 11%;

  --secondary: 266 33% 38%;           /* #5B407F — deep purple */
  --secondary-foreground: 0 0% 100%;
  --muted: 40 10% 90%;                /* warm gray */
  --muted-foreground: 236 6% 45%;     /* #6A6B7A */
  --accent: 35 94% 56%;               /* same as primary on light */
  --accent-foreground: 232 35% 11%;

  --destructive: 9 73% 55%;           /* #E2533A */
  --destructive-foreground: 0 0% 100%;
  --success: 158 51% 47%;             /* #3BB58A */
  --success-foreground: 0 0% 100%;
  --warning: 35 94% 56%;              /* brand orange */
  --warning-foreground: 232 35% 11%;
  --info: 179 86% 47%;                /* #11DDDB */
  --info-foreground: 232 35% 11%;

  --border: 232 35% 11% / 0.10;       /* rgba(17,21,35,0.10) */
  --input: 232 35% 11% / 0.10;
  --ring: 43 100% 51%;                /* #FFBA07 — focus */

  --sidebar-background: 60 27% 98%;
  --sidebar-foreground: 232 35% 11%;
  --sidebar-primary: 35 94% 56%;
  --sidebar-primary-foreground: 232 35% 11%;
  --sidebar-accent: 40 10% 90%;
  --sidebar-accent-foreground: 232 35% 11%;
  --sidebar-border: 232 35% 11% / 0.10;
  --sidebar-ring: 43 100% 51%;

  --chart-1: 35 94% 56%;              /* orange */
  --chart-2: 188 52% 34%;             /* teal */
  --chart-3: 266 33% 38%;             /* purple */
  --chart-4: 218 85% 36%;             /* blue */
  --chart-5: 179 86% 47%;             /* teal-bright */

  --radius: 0.75rem;                  /* 12px — default card */

  /* --- v2 direct semantic tokens (light) --- */
  --bg:          #FAFAF7;
  --bg-elevated: #FFFFFF;
  --bg-panel:    #F4F3EE;

  --fg:          #111523;
  --fg-muted:    rgba(17,21,35,0.68);
  --fg-subtle:   rgba(17,21,35,0.45);
  --fg-mono-dark: rgba(17,21,35,0.55);  /* JetBrains on light */

  --hairline:      rgba(17,21,35,0.08); /* card / table hairline border */
  --border-strong: rgba(17,21,35,0.16);

  --accent-on-accent: #FFFFFF;          /* white on orange when light */

  /* Focus ring needs darker amber on light (#FFBA07 fails contrast). */
  --focus:            var(--tv-orange-deep);
  --focus-ring:       0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);
  --focus-ring-light: 0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);

  /* Status fg-on-dark variants flip to their light-on-light tints. */
  --success-fg-on-dark: var(--success-fg);
  --warning-fg-on-dark: var(--warning-fg);
  --danger-fg-on-dark:  var(--danger-fg);
  --info-fg-on-dark:    var(--info-fg);
  --neutral-bg-on-dark: var(--neutral-bg);
  --neutral-fg-on-dark: var(--neutral-fg);

  /* Surface tints resolve to the dark-on-light ramp. */
  --surface-d-1: var(--surface-l-1);
  --surface-d-2: var(--surface-l-2);
  --surface-d-3: var(--surface-l-3);
  --surface-d-4: rgba(17,21,35,0.14);

  color-scheme: light;
}

/* ------------------------------------------------------------------ */

/* DARK THEME — the primary product surface.                           */

/*   .dark (shadcn/next-themes) and [data-theme="dark"] share this.    */

/*   App chrome #0E1020, elevated panels #181A2E.                      */

/* ------------------------------------------------------------------ */

.dark,
[data-theme="dark"] {
  /* --- shadcn HSL channels --- */
  --primary: 35 94% 56%;
  --primary-foreground: 232 35% 11%;

  --background: 233 38% 9%;           /* #0E1020 — app bg */
  --foreground: 0 0% 100%;
  --card: 233 31% 14%;                /* #181A2E — elevated */
  --card-foreground: 0 0% 100%;
  --popover: 233 31% 14%;
  --popover-foreground: 0 0% 100%;

  --secondary: 266 33% 38%;
  --secondary-foreground: 0 0% 100%;
  --muted: 233 28% 17%;               /* #1F223A — panel */
  --muted-foreground: 0 0% 100% / 0.68;
  --accent: 35 94% 56%;
  --accent-foreground: 232 35% 11%;

  --destructive: 9 73% 55%;
  --destructive-foreground: 0 0% 100%;
  --success: 158 51% 47%;
  --success-foreground: 0 0% 100%;
  --warning: 35 94% 56%;
  --warning-foreground: 232 35% 11%;
  --info: 179 86% 47%;
  --info-foreground: 232 35% 11%;

  --border: 0 0% 100% / 0.10;         /* rgba(255,255,255,0.10) */
  --input: 0 0% 100% / 0.10;
  --ring: 43 100% 51%;                /* #FFBA07 focus */

  --sidebar-background: 233 38% 9%;
  --sidebar-foreground: 0 0% 100%;
  --sidebar-primary: 35 94% 56%;
  --sidebar-primary-foreground: 232 35% 11%;
  --sidebar-accent: 233 28% 17%;
  --sidebar-accent-foreground: 0 0% 100%;
  --sidebar-border: 0 0% 100% / 0.10;
  --sidebar-ring: 43 100% 51%;

  --chart-1: 35 94% 58%;
  --chart-2: 179 86% 47%;
  --chart-3: 270 41% 60%;
  --chart-4: 218 85% 56%;
  --chart-5: 158 51% 55%;

  --radius: 0.75rem;

  /* --- v2 direct semantic tokens (dark) --- */
  --bg:          #0E1020;
  --bg-elevated: #181A2E;
  --bg-panel:    #1F223A;

  --fg:          #FFFFFF;
  --fg-muted:    rgba(255,255,255,0.68);
  --fg-subtle:   rgba(255,255,255,0.45);
  --fg-mono-dark: rgba(255,255,255,0.55);

  --hairline:      rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.22);

  --accent-on-accent: #111523;          /* black on orange, AAA 10.2 */

  --focus:      #FFBA07;
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--focus);
  --focus-ring-light: 0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);

  /* Status fg-on-dark variants brighten for dark surfaces. */
  --success-fg-on-dark: #5BD0A4;
  --warning-fg-on-dark: var(--tv-orange-warm);
  --danger-fg-on-dark:  #F0816B;
  --info-fg-on-dark:    var(--tv-teal-bright);
  --neutral-bg-on-dark: rgba(255,255,255,0.10);
  --neutral-fg-on-dark: var(--fg);

  /* Surface tints resolve to the white-on-dark ramp. */
  --surface-d-1: rgba(255,255,255,0.04);
  --surface-d-2: rgba(255,255,255,0.06);
  --surface-d-3: rgba(255,255,255,0.10);
  --surface-d-4: rgba(255,255,255,0.14);

  color-scheme: dark;
}

/* ------------------------------------------------------------------ */

/* Reduced motion — system default (v2).                               */

/* Zeroes the duration tokens + forces single-iteration animations.    */

/* The radar pulse re-enables itself inside a no-preference gate.       */

/* ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
  }
  *, *::before, *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
}

/* ------------------------------------------------------------------ */

/* Base resets                                                         */

/* ------------------------------------------------------------------ */

*,
*::before,
*::after {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
}

/* Keyboard focus — always visible, always brand amber. The .tv-*
   component layer additionally renders a 2-ring box-shadow focus ring
   via var(--focus-ring); this outline is the platform-wide default for
   everything else. */

:where(*):focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

@layer theme{@theme default{--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; --color-red-50: oklch(97.1% .013 17.38); --color-red-100: oklch(93.6% .032 17.717); --color-red-200: oklch(88.5% .062 18.334); --color-red-300: oklch(80.8% .114 19.571); --color-red-400: oklch(70.4% .191 22.216); --color-red-500: oklch(63.7% .237 25.331); --color-red-600: oklch(57.7% .245 27.325); --color-red-700: oklch(50.5% .213 27.518); --color-red-800: oklch(44.4% .177 26.899); --color-red-900: oklch(39.6% .141 25.723); --color-red-950: oklch(25.8% .092 26.042); --color-orange-50: oklch(98% .016 73.684); --color-orange-100: oklch(95.4% .038 75.164); --color-orange-200: oklch(90.1% .076 70.697); --color-orange-300: oklch(83.7% .128 66.29); --color-orange-400: oklch(75% .183 55.934); --color-orange-500: oklch(70.5% .213 47.604); --color-orange-600: oklch(64.6% .222 41.116); --color-orange-700: oklch(55.3% .195 38.402); --color-orange-800: oklch(47% .157 37.304); --color-orange-900: oklch(40.8% .123 38.172); --color-orange-950: oklch(26.6% .079 36.259); --color-amber-50: oklch(98.7% .022 95.277); --color-amber-100: oklch(96.2% .059 95.617); --color-amber-200: oklch(92.4% .12 95.746); --color-amber-300: oklch(87.9% .169 91.605); --color-amber-400: oklch(82.8% .189 84.429); --color-amber-500: oklch(76.9% .188 70.08); --color-amber-600: oklch(66.6% .179 58.318); --color-amber-700: oklch(55.5% .163 48.998); --color-amber-800: oklch(47.3% .137 46.201); --color-amber-900: oklch(41.4% .112 45.904); --color-amber-950: oklch(27.9% .077 45.635); --color-yellow-50: oklch(98.7% .026 102.212); --color-yellow-100: oklch(97.3% .071 103.193); --color-yellow-200: oklch(94.5% .129 101.54); --color-yellow-300: oklch(90.5% .182 98.111); --color-yellow-400: oklch(85.2% .199 91.936); --color-yellow-500: oklch(79.5% .184 86.047); --color-yellow-600: oklch(68.1% .162 75.834); --color-yellow-700: oklch(55.4% .135 66.442); --color-yellow-800: oklch(47.6% .114 61.907); --color-yellow-900: oklch(42.1% .095 57.708); --color-yellow-950: oklch(28.6% .066 53.813); --color-lime-50: oklch(98.6% .031 120.757); --color-lime-100: oklch(96.7% .067 122.328); --color-lime-200: oklch(93.8% .127 124.321); --color-lime-300: oklch(89.7% .196 126.665); --color-lime-400: oklch(84.1% .238 128.85); --color-lime-500: oklch(76.8% .233 130.85); --color-lime-600: oklch(64.8% .2 131.684); --color-lime-700: oklch(53.2% .157 131.589); --color-lime-800: oklch(45.3% .124 130.933); --color-lime-900: oklch(40.5% .101 131.063); --color-lime-950: oklch(27.4% .072 132.109); --color-green-50: oklch(98.2% .018 155.826); --color-green-100: oklch(96.2% .044 156.743); --color-green-200: oklch(92.5% .084 155.995); --color-green-300: oklch(87.1% .15 154.449); --color-green-400: oklch(79.2% .209 151.711); --color-green-500: oklch(72.3% .219 149.579); --color-green-600: oklch(62.7% .194 149.214); --color-green-700: oklch(52.7% .154 150.069); --color-green-800: oklch(44.8% .119 151.328); --color-green-900: oklch(39.3% .095 152.535); --color-green-950: oklch(26.6% .065 152.934); --color-emerald-50: oklch(97.9% .021 166.113); --color-emerald-100: oklch(95% .052 163.051); --color-emerald-200: oklch(90.5% .093 164.15); --color-emerald-300: oklch(84.5% .143 164.978); --color-emerald-400: oklch(76.5% .177 163.223); --color-emerald-500: oklch(69.6% .17 162.48); --color-emerald-600: oklch(59.6% .145 163.225); --color-emerald-700: oklch(50.8% .118 165.612); --color-emerald-800: oklch(43.2% .095 166.913); --color-emerald-900: oklch(37.8% .077 168.94); --color-emerald-950: oklch(26.2% .051 172.552); --color-teal-50: oklch(98.4% .014 180.72); --color-teal-100: oklch(95.3% .051 180.801); --color-teal-200: oklch(91% .096 180.426); --color-teal-300: oklch(85.5% .138 181.071); --color-teal-400: oklch(77.7% .152 181.912); --color-teal-500: oklch(70.4% .14 182.503); --color-teal-600: oklch(60% .118 184.704); --color-teal-700: oklch(51.1% .096 186.391); --color-teal-800: oklch(43.7% .078 188.216); --color-teal-900: oklch(38.6% .063 188.416); --color-teal-950: oklch(27.7% .046 192.524); --color-cyan-50: oklch(98.4% .019 200.873); --color-cyan-100: oklch(95.6% .045 203.388); --color-cyan-200: oklch(91.7% .08 205.041); --color-cyan-300: oklch(86.5% .127 207.078); --color-cyan-400: oklch(78.9% .154 211.53); --color-cyan-500: oklch(71.5% .143 215.221); --color-cyan-600: oklch(60.9% .126 221.723); --color-cyan-700: oklch(52% .105 223.128); --color-cyan-800: oklch(45% .085 224.283); --color-cyan-900: oklch(39.8% .07 227.392); --color-cyan-950: oklch(30.2% .056 229.695); --color-sky-50: oklch(97.7% .013 236.62); --color-sky-100: oklch(95.1% .026 236.824); --color-sky-200: oklch(90.1% .058 230.902); --color-sky-300: oklch(82.8% .111 230.318); --color-sky-400: oklch(74.6% .16 232.661); --color-sky-500: oklch(68.5% .169 237.323); --color-sky-600: oklch(58.8% .158 241.966); --color-sky-700: oklch(50% .134 242.749); --color-sky-800: oklch(44.3% .11 240.79); --color-sky-900: oklch(39.1% .09 240.876); --color-sky-950: oklch(29.3% .066 243.157); --color-blue-50: oklch(97% .014 254.604); --color-blue-100: oklch(93.2% .032 255.585); --color-blue-200: oklch(88.2% .059 254.128); --color-blue-300: oklch(80.9% .105 251.813); --color-blue-400: oklch(70.7% .165 254.624); --color-blue-500: oklch(62.3% .214 259.815); --color-blue-600: oklch(54.6% .245 262.881); --color-blue-700: oklch(48.8% .243 264.376); --color-blue-800: oklch(42.4% .199 265.638); --color-blue-900: oklch(37.9% .146 265.522); --color-blue-950: oklch(28.2% .091 267.935); --color-indigo-50: oklch(96.2% .018 272.314); --color-indigo-100: oklch(93% .034 272.788); --color-indigo-200: oklch(87% .065 274.039); --color-indigo-300: oklch(78.5% .115 274.713); --color-indigo-400: oklch(67.3% .182 276.935); --color-indigo-500: oklch(58.5% .233 277.117); --color-indigo-600: oklch(51.1% .262 276.966); --color-indigo-700: oklch(45.7% .24 277.023); --color-indigo-800: oklch(39.8% .195 277.366); --color-indigo-900: oklch(35.9% .144 278.697); --color-indigo-950: oklch(25.7% .09 281.288); --color-violet-50: oklch(96.9% .016 293.756); --color-violet-100: oklch(94.3% .029 294.588); --color-violet-200: oklch(89.4% .057 293.283); --color-violet-300: oklch(81.1% .111 293.571); --color-violet-400: oklch(70.2% .183 293.541); --color-violet-500: oklch(60.6% .25 292.717); --color-violet-600: oklch(54.1% .281 293.009); --color-violet-700: oklch(49.1% .27 292.581); --color-violet-800: oklch(43.2% .232 292.759); --color-violet-900: oklch(38% .189 293.745); --color-violet-950: oklch(28.3% .141 291.089); --color-purple-50: oklch(97.7% .014 308.299); --color-purple-100: oklch(94.6% .033 307.174); --color-purple-200: oklch(90.2% .063 306.703); --color-purple-300: oklch(82.7% .119 306.383); --color-purple-400: oklch(71.4% .203 305.504); --color-purple-500: oklch(62.7% .265 303.9); --color-purple-600: oklch(55.8% .288 302.321); --color-purple-700: oklch(49.6% .265 301.924); --color-purple-800: oklch(43.8% .218 303.724); --color-purple-900: oklch(38.1% .176 304.987); --color-purple-950: oklch(29.1% .149 302.717); --color-fuchsia-50: oklch(97.7% .017 320.058); --color-fuchsia-100: oklch(95.2% .037 318.852); --color-fuchsia-200: oklch(90.3% .076 319.62); --color-fuchsia-300: oklch(83.3% .145 321.434); --color-fuchsia-400: oklch(74% .238 322.16); --color-fuchsia-500: oklch(66.7% .295 322.15); --color-fuchsia-600: oklch(59.1% .293 322.896); --color-fuchsia-700: oklch(51.8% .253 323.949); --color-fuchsia-800: oklch(45.2% .211 324.591); --color-fuchsia-900: oklch(40.1% .17 325.612); --color-fuchsia-950: oklch(29.3% .136 325.661); --color-pink-50: oklch(97.1% .014 343.198); --color-pink-100: oklch(94.8% .028 342.258); --color-pink-200: oklch(89.9% .061 343.231); --color-pink-300: oklch(82.3% .12 346.018); --color-pink-400: oklch(71.8% .202 349.761); --color-pink-500: oklch(65.6% .241 354.308); --color-pink-600: oklch(59.2% .249 .584); --color-pink-700: oklch(52.5% .223 3.958); --color-pink-800: oklch(45.9% .187 3.815); --color-pink-900: oklch(40.8% .153 2.432); --color-pink-950: oklch(28.4% .109 3.907); --color-rose-50: oklch(96.9% .015 12.422); --color-rose-100: oklch(94.1% .03 12.58); --color-rose-200: oklch(89.2% .058 10.001); --color-rose-300: oklch(81% .117 11.638); --color-rose-400: oklch(71.2% .194 13.428); --color-rose-500: oklch(64.5% .246 16.439); --color-rose-600: oklch(58.6% .253 17.585); --color-rose-700: oklch(51.4% .222 16.935); --color-rose-800: oklch(45.5% .188 13.697); --color-rose-900: oklch(41% .159 10.272); --color-rose-950: oklch(27.1% .105 12.094); --color-slate-50: oklch(98.4% .003 247.858); --color-slate-100: oklch(96.8% .007 247.896); --color-slate-200: oklch(92.9% .013 255.508); --color-slate-300: oklch(86.9% .022 252.894); --color-slate-400: oklch(70.4% .04 256.788); --color-slate-500: oklch(55.4% .046 257.417); --color-slate-600: oklch(44.6% .043 257.281); --color-slate-700: oklch(37.2% .044 257.287); --color-slate-800: oklch(27.9% .041 260.031); --color-slate-900: oklch(20.8% .042 265.755); --color-slate-950: oklch(12.9% .042 264.695); --color-gray-50: oklch(98.5% .002 247.839); --color-gray-100: oklch(96.7% .003 264.542); --color-gray-200: oklch(92.8% .006 264.531); --color-gray-300: oklch(87.2% .01 258.338); --color-gray-400: oklch(70.7% .022 261.325); --color-gray-500: oklch(55.1% .027 264.364); --color-gray-600: oklch(44.6% .03 256.802); --color-gray-700: oklch(37.3% .034 259.733); --color-gray-800: oklch(27.8% .033 256.848); --color-gray-900: oklch(21% .034 264.665); --color-gray-950: oklch(13% .028 261.692); --color-zinc-50: oklch(98.5% 0 0); --color-zinc-100: oklch(96.7% .001 286.375); --color-zinc-200: oklch(92% .004 286.32); --color-zinc-300: oklch(87.1% .006 286.286); --color-zinc-400: oklch(70.5% .015 286.067); --color-zinc-500: oklch(55.2% .016 285.938); --color-zinc-600: oklch(44.2% .017 285.786); --color-zinc-700: oklch(37% .013 285.805); --color-zinc-800: oklch(27.4% .006 286.033); --color-zinc-900: oklch(21% .006 285.885); --color-zinc-950: oklch(14.1% .005 285.823); --color-neutral-50: oklch(98.5% 0 0); --color-neutral-100: oklch(97% 0 0); --color-neutral-200: oklch(92.2% 0 0); --color-neutral-300: oklch(87% 0 0); --color-neutral-400: oklch(70.8% 0 0); --color-neutral-500: oklch(55.6% 0 0); --color-neutral-600: oklch(43.9% 0 0); --color-neutral-700: oklch(37.1% 0 0); --color-neutral-800: oklch(26.9% 0 0); --color-neutral-900: oklch(20.5% 0 0); --color-neutral-950: oklch(14.5% 0 0); --color-stone-50: oklch(98.5% .001 106.423); --color-stone-100: oklch(97% .001 106.424); --color-stone-200: oklch(92.3% .003 48.717); --color-stone-300: oklch(86.9% .005 56.366); --color-stone-400: oklch(70.9% .01 56.259); --color-stone-500: oklch(55.3% .013 58.071); --color-stone-600: oklch(44.4% .011 73.639); --color-stone-700: oklch(37.4% .01 67.558); --color-stone-800: oklch(26.8% .007 34.298); --color-stone-900: oklch(21.6% .006 56.043); --color-stone-950: oklch(14.7% .004 49.25); --color-mauve-50: oklch(98.5% 0 0); --color-mauve-100: oklch(96% .003 325.6); --color-mauve-200: oklch(92.2% .005 325.62); --color-mauve-300: oklch(86.5% .012 325.68); --color-mauve-400: oklch(71.1% .019 323.02); --color-mauve-500: oklch(54.2% .034 322.5); --color-mauve-600: oklch(43.5% .029 321.78); --color-mauve-700: oklch(36.4% .029 323.89); --color-mauve-800: oklch(26.3% .024 320.12); --color-mauve-900: oklch(21.2% .019 322.12); --color-mauve-950: oklch(14.5% .008 326); --color-olive-50: oklch(98.8% .003 106.5); --color-olive-100: oklch(96.6% .005 106.5); --color-olive-200: oklch(93% .007 106.5); --color-olive-300: oklch(88% .011 106.6); --color-olive-400: oklch(73.7% .021 106.9); --color-olive-500: oklch(58% .031 107.3); --color-olive-600: oklch(46.6% .025 107.3); --color-olive-700: oklch(39.4% .023 107.4); --color-olive-800: oklch(28.6% .016 107.4); --color-olive-900: oklch(22.8% .013 107.4); --color-olive-950: oklch(15.3% .006 107.1); --color-mist-50: oklch(98.7% .002 197.1); --color-mist-100: oklch(96.3% .002 197.1); --color-mist-200: oklch(92.5% .005 214.3); --color-mist-300: oklch(87.2% .007 219.6); --color-mist-400: oklch(72.3% .014 214.4); --color-mist-500: oklch(56% .021 213.5); --color-mist-600: oklch(45% .017 213.2); --color-mist-700: oklch(37.8% .015 216); --color-mist-800: oklch(27.5% .011 216.9); --color-mist-900: oklch(21.8% .008 223.9); --color-mist-950: oklch(14.8% .004 228.8); --color-taupe-50: oklch(98.6% .002 67.8); --color-taupe-100: oklch(96% .002 17.2); --color-taupe-200: oklch(92.2% .005 34.3); --color-taupe-300: oklch(86.8% .007 39.5); --color-taupe-400: oklch(71.4% .014 41.2); --color-taupe-500: oklch(54.7% .021 43.1); --color-taupe-600: oklch(43.8% .017 39.3); --color-taupe-700: oklch(36.7% .016 35.7); --color-taupe-800: oklch(26.8% .011 36.5); --color-taupe-900: oklch(21.4% .009 43.1); --color-taupe-950: oklch(14.7% .004 49.3); --color-black: #000; --color-white: #fff; --spacing: .25rem; --breakpoint-sm: 40rem; --breakpoint-md: 48rem; --breakpoint-lg: 64rem; --breakpoint-xl: 80rem; --breakpoint-2xl: 96rem; --container-3xs: 16rem; --container-2xs: 18rem; --container-xs: 20rem; --container-sm: 24rem; --container-md: 28rem; --container-lg: 32rem; --container-xl: 36rem; --container-2xl: 42rem; --container-3xl: 48rem; --container-4xl: 56rem; --container-5xl: 64rem; --container-6xl: 72rem; --container-7xl: 80rem; --text-xs: .75rem; --text-xs--line-height: calc(1 / .75); --text-sm: .875rem; --text-sm--line-height: calc(1.25 / .875); --text-base: 1rem; --text-base--line-height: calc(1.5 / 1); --text-lg: 1.125rem; --text-lg--line-height: calc(1.75 / 1.125); --text-xl: 1.25rem; --text-xl--line-height: calc(1.75 / 1.25); --text-2xl: 1.5rem; --text-2xl--line-height: calc(2 / 1.5); --text-3xl: 1.875rem; --text-3xl--line-height: calc(2.25 / 1.875); --text-4xl: 2.25rem; --text-4xl--line-height: calc(2.5 / 2.25); --text-5xl: 3rem; --text-5xl--line-height: 1; --text-6xl: 3.75rem; --text-6xl--line-height: 1; --text-7xl: 4.5rem; --text-7xl--line-height: 1; --text-8xl: 6rem; --text-8xl--line-height: 1; --text-9xl: 8rem; --text-9xl--line-height: 1; --font-weight-thin: 100; --font-weight-extralight: 200; --font-weight-light: 300; --font-weight-normal: 400; --font-weight-medium: 500; --font-weight-semibold: 600; --font-weight-bold: 700; --font-weight-extrabold: 800; --font-weight-black: 900; --tracking-tighter: -.05em; --tracking-tight: -.025em; --tracking-normal: 0em; --tracking-wide: .025em; --tracking-wider: .05em; --tracking-widest: .1em; --leading-tight: 1.25; --leading-snug: 1.375; --leading-normal: 1.5; --leading-relaxed: 1.625; --leading-loose: 2; --radius-xs: .125rem; --radius-sm: .25rem; --radius-md: .375rem; --radius-lg: .5rem; --radius-xl: .75rem; --radius-2xl: 1rem; --radius-3xl: 1.5rem; --radius-4xl: 2rem; --shadow-2xs: 0 1px #0000000d; --shadow-xs: 0 1px 2px 0 #0000000d; --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a; --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a; --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a; --shadow-xl: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a; --shadow-2xl: 0 25px 50px -12px #00000040; --inset-shadow-2xs: inset 0 1px #0000000d; --inset-shadow-xs: inset 0 1px 1px #0000000d; --inset-shadow-sm: inset 0 2px 4px #0000000d; --drop-shadow-xs: 0 1px 1px #0000000d; --drop-shadow-sm: 0 1px 2px #00000026; --drop-shadow-md: 0 3px 3px #0000001f; --drop-shadow-lg: 0 4px 4px #00000026; --drop-shadow-xl: 0 9px 7px #0000001a; --drop-shadow-2xl: 0 25px 25px #00000026; --text-shadow-2xs: 0px 1px 0px #00000026; --text-shadow-xs: 0px 1px 1px #0003; --text-shadow-sm: 0px 1px 0px #00000013, 0px 1px 1px #00000013, 0px 2px 2px #00000013; --text-shadow-md: 0px 1px 1px #0000001a, 0px 1px 2px #0000001a, 0px 2px 4px #0000001a; --text-shadow-lg: 0px 1px 2px #0000001a, 0px 3px 2px #0000001a, 0px 4px 8px #0000001a; --ease-in: cubic-bezier(.4, 0, 1, 1); --ease-out: cubic-bezier(0, 0, .2, 1); --ease-in-out: cubic-bezier(.4, 0, .2, 1); --animate-spin: spin 1s linear infinite; --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite; --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite; --animate-bounce: bounce 1s infinite; @keyframes spin { to { transform: rotate(360deg); } } @keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } } @keyframes pulse { 50% { opacity: .5; } } @keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(.8, 0, 1, 1); } 50% { transform: none; animation-timing-function: cubic-bezier(0, 0, .2, 1); } } --blur-xs: 4px; --blur-sm: 8px; --blur-md: 12px; --blur-lg: 16px; --blur-xl: 24px; --blur-2xl: 40px; --blur-3xl: 64px; --perspective-dramatic: 100px; --perspective-near: 300px; --perspective-normal: 500px; --perspective-midrange: 800px; --perspective-distant: 1200px; --aspect-video: 16 / 9; --default-transition-duration: .15s; --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1); --default-font-family: --theme(--font-sans, initial); --default-font-feature-settings: --theme(--font-sans--font-feature-settings, initial); --default-font-variation-settings: --theme(--font-sans--font-variation-settings, initial); --default-mono-font-family: --theme(--font-mono, initial); --default-mono-font-feature-settings: --theme(--font-mono--font-feature-settings, initial); --default-mono-font-variation-settings: --theme(--font-mono--font-variation-settings, initial);}@theme default inline reference{--blur: 8px; --shadow: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a; --shadow-inner: inset 0 2px 4px 0 #0000000d; --drop-shadow: 0 1px 2px #0000001a, 0 1px 1px #0000000f; --radius: .25rem; --max-width-prose: 65ch;}}
@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:--theme(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:--theme(--default-font-feature-settings, normal);font-variation-settings:--theme(--default-font-variation-settings, normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:--theme(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:--theme(--default-mono-font-feature-settings, normal);font-variation-settings:--theme(--default-mono-font-variation-settings, normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab, currentcolor 50%, transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}
@layer components;
@layer utilities{@tailwind utilities;}
:root{--tv-orange:#f8a324;--tv-orange-warm:#ffba07;--tv-orange-soft:#fecf6e;--tv-orange-deep:#d28d05;--tv-purple-light:#8869af;--tv-purple-mid:#6b4d93;--tv-purple:#5b407f;--tv-purple-deep:#3f2b5c;--tv-blue-mid:#2661af;--tv-blue:#0d46ab;--tv-teal:#2a7884;--tv-teal-bright:#11dddb;--tv-black:#111523;--tv-ink:#322927;--tv-gray-500:#6a6b7a;--tv-gray-300:#9d9386;--tv-gray-200:#bdbdbd;--tv-cool-100:#d7e4e5;--tv-sand-100:#e0dad3;--tv-sand-200:#cfc8b9;--tv-sand-300:#b5ab9b;--tv-white:#fff;--tv-gray-900:var(--tv-black);--tv-gray-700:var(--tv-ink);--tv-gray-100:var(--tv-cool-100);--tv-gradient-brand:linear-gradient(180deg, var(--tv-purple) 0%, var(--tv-blue-mid) 100%);--tv-gradient-purple:linear-gradient(180deg, color-mix(in srgb, var(--tv-purple-light) 85%, transparent) 0%, color-mix(in srgb, var(--tv-purple-mid) 95%, transparent) 100%);--tv-gradient-warm:linear-gradient(180deg, var(--tv-orange) 0%, var(--tv-orange-deep) 100%);--font-display:"Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;--font-sans:"Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;--font-body:"Open Sans", "Montserrat", ui-sans-serif, system-ui, sans-serif;--font-mono:"JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;--step--2:.75rem;--step--1:.875rem;--step-0:1rem;--step-1:1.125rem;--step-2:1.5rem;--step-3:2rem;--step-4:2.5rem;--step-5:3rem;--step-6:4.5rem;--step-7:6rem;--leading-tight:1.05;--leading-snug:1.2;--leading-body:1.55;--leading-loose:1.7;--tracking-tight:-.02em;--tracking-normal:0;--tracking-wide:.1em;--tracking-xwide:.24em;--radius-xs:4px;--radius-sm:8px;--radius-md:12px;--radius-lg:20px;--radius-xl:28px;--radius-2xl:40px;--radius-pill:999px;--shadow-sm:0 1px 2px #1115230f, 0 1px 1px #1115230a;--shadow-md:0 6px 18px #1115231a, 0 2px 4px #1115230d;--shadow-lg:0 20px 40px #11152329, 0 6px 12px #11152314;--shadow-glow-orange:0 0 0 1px #f8a32459, 0 10px 30px #f8a32440;--shadow-glow-purple:0 0 0 1px #5b408066, 0 12px 36px #5b40804d;--shadow-glow-teal:0 0 0 1px #11dddb4d, 0 8px 24px #11dddb33;--space-1:4px;--space-2:8px;--space-3:12px;--space-4:16px;--space-5:24px;--space-6:32px;--space-7:48px;--space-8:64px;--space-9:96px;--ease-out:cubic-bezier(.22, 1, .36, 1);--ease-in:cubic-bezier(.64, 0, .78, 0);--ease-inout:cubic-bezier(.65, 0, .35, 1);--dur-fast:.14s;--dur-base:.24s;--dur-slow:.42s;--bg-page:#fafaf7;--bg-paper:#f4f3ee;--surface:#fff;--fg-on-light:#111523;--fg-on-light-body:#322927;--fg-on-light-muted:#6a6b7a;--fg-mono-light:#1115238c;--border-on-light:#11152314;--accent-hover:var(--tv-orange-deep);--danger:#e2533a;--success-bg:#3bb58a29;--success-fg:#3bb58a;--warning-bg:#f8a3242e;--warning-fg:#8a5a07;--danger-bg:#e2533a29;--danger-fg:#9e3c28;--info-bg:#11dddb2e;--info-fg:#0b8684;--neutral-bg:#11152314;--neutral-fg:#111523;--surface-l-1:#11152308;--surface-l-2:#1115230f;--surface-l-3:#1115231a}
:root,[data-theme=light]{--primary:35 94% 56%;--primary-foreground:232 35% 11%;--background:60 27% 98%;--foreground:232 35% 11%;--card:0 0% 100%;--card-foreground:232 35% 11%;--popover:0 0% 100%;--popover-foreground:232 35% 11%;--secondary:266 33% 38%;--secondary-foreground:0 0% 100%;--muted:40 10% 90%;--muted-foreground:236 6% 45%;--accent:35 94% 56%;--accent-foreground:232 35% 11%;--destructive:9 73% 55%;--destructive-foreground:0 0% 100%;--success:158 51% 47%;--success-foreground:0 0% 100%;--warning:35 94% 56%;--warning-foreground:232 35% 11%;--info:179 86% 47%;--info-foreground:232 35% 11%;--border:232 35% 11% / .1;--input:232 35% 11% / .1;--ring:43 100% 51%;--sidebar-background:60 27% 98%;--sidebar-foreground:232 35% 11%;--sidebar-primary:35 94% 56%;--sidebar-primary-foreground:232 35% 11%;--sidebar-accent:40 10% 90%;--sidebar-accent-foreground:232 35% 11%;--sidebar-border:232 35% 11% / .1;--sidebar-ring:43 100% 51%;--chart-1:35 94% 56%;--chart-2:188 52% 34%;--chart-3:266 33% 38%;--chart-4:218 85% 36%;--chart-5:179 86% 47%;--radius:.75rem;--bg:#fafaf7;--bg-elevated:#fff;--bg-panel:#f4f3ee;--fg:#111523;--fg-muted:#111523ad;--fg-subtle:#11152373;--fg-mono-dark:#1115238c;--hairline:#11152314;--border-strong:#11152329;--accent-on-accent:#fff;--focus:var(--tv-orange-deep);--focus-ring:0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);--focus-ring-light:0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);--success-fg-on-dark:var(--success-fg);--warning-fg-on-dark:var(--warning-fg);--danger-fg-on-dark:var(--danger-fg);--info-fg-on-dark:var(--info-fg);--neutral-bg-on-dark:var(--neutral-bg);--neutral-fg-on-dark:var(--neutral-fg);--surface-d-1:var(--surface-l-1);--surface-d-2:var(--surface-l-2);--surface-d-3:var(--surface-l-3);--surface-d-4:#11152324;--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light}
.dark,[data-theme=dark]{--primary:35 94% 56%;--primary-foreground:232 35% 11%;--background:233 38% 9%;--foreground:0 0% 100%;--card:233 31% 14%;--card-foreground:0 0% 100%;--popover:233 31% 14%;--popover-foreground:0 0% 100%;--secondary:266 33% 38%;--secondary-foreground:0 0% 100%;--muted:233 28% 17%;--muted-foreground:0 0% 100% / .68;--accent:35 94% 56%;--accent-foreground:232 35% 11%;--destructive:9 73% 55%;--destructive-foreground:0 0% 100%;--success:158 51% 47%;--success-foreground:0 0% 100%;--warning:35 94% 56%;--warning-foreground:232 35% 11%;--info:179 86% 47%;--info-foreground:232 35% 11%;--border:0 0% 100% / .1;--input:0 0% 100% / .1;--ring:43 100% 51%;--sidebar-background:233 38% 9%;--sidebar-foreground:0 0% 100%;--sidebar-primary:35 94% 56%;--sidebar-primary-foreground:232 35% 11%;--sidebar-accent:233 28% 17%;--sidebar-accent-foreground:0 0% 100%;--sidebar-border:0 0% 100% / .1;--sidebar-ring:43 100% 51%;--chart-1:35 94% 58%;--chart-2:179 86% 47%;--chart-3:270 41% 60%;--chart-4:218 85% 56%;--chart-5:158 51% 55%;--radius:.75rem;--bg:#0e1020;--bg-elevated:#181a2e;--bg-panel:#1f223a;--fg:#fff;--fg-muted:#ffffffad;--fg-subtle:#ffffff73;--fg-mono-dark:#ffffff8c;--hairline:#ffffff1a;--border-strong:#ffffff38;--accent-on-accent:#111523;--focus:#ffba07;--focus-ring:0 0 0 2px var(--bg), 0 0 0 4px var(--focus);--focus-ring-light:0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);--success-fg-on-dark:#5bd0a4;--warning-fg-on-dark:var(--tv-orange-warm);--danger-fg-on-dark:#f0816b;--info-fg-on-dark:var(--tv-teal-bright);--neutral-bg-on-dark:#ffffff1a;--neutral-fg-on-dark:var(--fg);--surface-d-1:#ffffff0a;--surface-d-2:#ffffff0f;--surface-d-3:#ffffff1a;--surface-d-4:#ffffff24;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark}
@media (prefers-reduced-motion:reduce){:root{--dur-fast:0s;--dur-base:0s;--dur-slow:0s}*,:before,:after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}
*,:before,:after{border-color:hsl(var(--border))}
body{background-color:hsl(var(--background));color:hsl(var(--foreground));font-family:var(--font-sans)}
:where(*):focus-visible{outline:2px solid hsl(var(--ring));outline-offset:2px}
.tv-display,h1.tv{font-family:var(--font-display);font-weight:700;font-size:var(--step-7);line-height:var(--leading-tight);letter-spacing:var(--tracking-tight);color:hsl(var(--foreground));text-wrap:balance}
.tv-h1{font-family:var(--font-display);font-weight:700;font-size:var(--step-5);line-height:var(--leading-tight);letter-spacing:-.01em;text-wrap:balance}
.tv-h2{font-family:var(--font-display);font-weight:700;font-size:var(--step-4);line-height:var(--leading-snug);text-wrap:balance}
.tv-h3{font-family:var(--font-display);font-weight:600;font-size:var(--step-3);line-height:var(--leading-snug);text-wrap:balance}
.tv-subhead{font-family:var(--font-display);font-weight:500;font-size:var(--step-2);line-height:var(--leading-snug);color:var(--tv-orange)}
.tv-on-dark .tv-subhead{color:var(--tv-orange-warm)}
.tv-eyebrow{font-family:var(--font-display);font-weight:700;font-size:var(--step--2);letter-spacing:var(--tracking-xwide);text-transform:uppercase;color:var(--tv-orange)}
.tv-wordmark{font-family:var(--font-display);letter-spacing:var(--tracking-wide);text-transform:uppercase;font-weight:700}
.tv-body{font-family:var(--font-body);font-weight:300;font-size:var(--step-0);line-height:var(--leading-body);text-wrap:pretty}
.tv-body-sm{font-family:var(--font-body);font-weight:400;font-size:var(--step--1);line-height:var(--leading-body);text-wrap:pretty}
.tv-body-strong{font-weight:500}
.tv-caption{font-family:var(--font-display);font-size:var(--step--2);color:hsl(var(--muted-foreground));letter-spacing:.02em;font-weight:500}
.tv-code{font-family:var(--font-mono);font-size:.92em}
.tv-accent-rule:after{content:"";background:var(--tv-orange);border-radius:999px;width:64px;height:6px;margin-top:18px;display:block}
.tv-surface-brand{background:var(--tv-gradient-brand);color:#fff}
.tv-surface-purple{background:var(--tv-purple);color:#fff}
.tv-surface-dark{color:#fff;background:#0e1020}
.tv-surface-panel{color:#fff;background:#181a2e}
.tv-surface-sand{color:var(--tv-black);background:#fafaf7}
.tv-radar-bg{isolation:isolate;position:relative;overflow:hidden}
.tv-radar-bg:before{content:"";aspect-ratio:1;pointer-events:none;z-index:-1;background:radial-gradient(circle,#0000 0% 20%,#ffffff05 22% 24%,#0000 26% 34%,#ffffff08 36% 38%,#0000 40% 48%,#ffffff0a 50% 52%,#0000 54% 62%,#ffffff0f 64% 66%,#0000 68% 76%,#ffffff14 78% 80%,#0000 82%);border-radius:50%;width:120%;position:absolute;top:-40%;right:-20%}
.tv-radar-pulse{justify-content:center;align-items:center;display:inline-flex;position:relative}
.tv-radar-pulse:before,.tv-radar-pulse:after{content:"";border:1px solid var(--tv-orange);animation:tv-radar-pulse 2s var(--ease-out) infinite;border-radius:50%;position:absolute;inset:0}
.tv-radar-pulse:after{animation-delay:1s}
@keyframes tv-radar-pulse{0%{opacity:.9;transform:scale(.6)}to{opacity:0;transform:scale(2.4)}}
.tv-focus-ring:focus-visible{outline:2px solid var(--tv-orange-warm);outline-offset:2px}
.tv-on-dark{--bg:#0e1020;--bg-elevated:#181a2e;--bg-panel:#1f223a;--fg:#fff;--fg-muted:#ffffffad;--fg-subtle:#ffffff73;--hairline:#ffffff1a;--border-strong:#ffffff38;--accent-on-accent:#111523;--focus:#ffba07;--focus-ring:0 0 0 2px var(--bg), 0 0 0 4px var(--focus);--surface-d-1:#ffffff0a;--surface-d-2:#ffffff0f;--surface-d-3:#ffffff1a;--surface-d-4:#ffffff24;--success-fg-on-dark:#5bd0a4;--warning-fg-on-dark:var(--tv-orange-warm);--danger-fg-on-dark:#f0816b;--info-fg-on-dark:var(--tv-teal-bright);--neutral-bg-on-dark:#ffffff1a;--neutral-fg-on-dark:var(--fg);color:var(--fg)}
.tv-on-light{--bg:#fafaf7;--bg-elevated:#fff;--bg-panel:#f4f3ee;--fg:#111523;--fg-muted:#111523ad;--fg-subtle:#11152373;--hairline:#11152314;--border-strong:#11152329;--accent-on-accent:#fff;--focus:var(--tv-orange-deep);--focus-ring:var(--focus-ring-light);--surface-d-1:var(--surface-l-1);--surface-d-2:var(--surface-l-2);--surface-d-3:var(--surface-l-3);--surface-d-4:#11152324;--success-fg-on-dark:var(--success-fg);--warning-fg-on-dark:var(--warning-fg);--danger-fg-on-dark:var(--danger-fg);--info-fg-on-dark:var(--info-fg);--neutral-bg-on-dark:var(--neutral-bg);--neutral-fg-on-dark:var(--neutral-fg);color:var(--fg)}
.tv-btn{--_btn-bg:transparent;--_btn-fg:var(--fg);--_btn-border:transparent;--_btn-shadow:none;align-items:center;gap:var(--space-2);font-family:var(--font-display);font-weight:600;font-size:var(--step--1);letter-spacing:.01em;border:1px solid var(--_btn-border);background:var(--_btn-bg);color:var(--_btn-fg);box-shadow:var(--_btn-shadow);cursor:pointer;transition:background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);border-radius:10px;min-height:36px;padding:10px 18px;text-decoration:none;display:inline-flex}
.tv-btn:focus-visible{box-shadow:var(--focus-ring);outline:none}
.tv-btn[disabled],.tv-btn.is-disabled{opacity:.4;cursor:not-allowed}
.tv-btn[aria-busy=true],.tv-btn.is-loading{cursor:progress}
.tv-btn--primary{--_btn-bg:var(--tv-orange);--_btn-fg:var(--accent-on-accent);--_btn-border:var(--tv-orange);--_btn-shadow:var(--shadow-glow-orange)}
.tv-btn--primary:hover{--_btn-bg:var(--tv-orange-deep);--_btn-border:var(--tv-orange-deep)}
.tv-btn--primary:active{transform:scale(.98)}
.tv-btn--secondary{--_btn-bg:var(--surface-d-2);--_btn-fg:var(--fg);--_btn-border:var(--hairline)}
.tv-btn--secondary:hover{--_btn-bg:var(--surface-d-3)}
.tv-btn--ghost{--_btn-bg:transparent;--_btn-fg:var(--fg);--_btn-border:var(--border-strong)}
.tv-btn--ghost:hover{--_btn-bg:var(--surface-d-2)}
.tv-btn--danger{--_btn-bg:var(--danger);--_btn-fg:#fff;--_btn-border:var(--danger)}
.tv-btn--danger:hover{--_btn-bg:#c84226;--_btn-border:#c84226}
.tv-btn--link{--_btn-bg:transparent;--_btn-fg:var(--tv-orange);text-underline-offset:4px;box-shadow:none;border:0;padding:10px 0;text-decoration:underline;text-decoration-thickness:1px}
.tv-btn--sm{border-radius:8px;min-height:28px;padding:6px 12px;font-size:12px}
.tv-btn--lg{font-size:var(--step-0);min-height:44px;padding:14px 24px}
.tv-btn--pill{border-radius:var(--radius-pill)}
.tv-input{font-family:var(--font-display);font-size:var(--step--1);color:var(--fg);background:var(--surface-d-1);border:1px solid var(--border-strong);transition:border-color var(--dur-fast), box-shadow var(--dur-fast);border-radius:10px;outline:none;width:100%;min-height:40px;padding:10px 14px}
.tv-input::placeholder{color:var(--fg-subtle)}
.tv-input:hover{border-color:var(--border-strong)}
.tv-input:focus-visible{border-color:var(--focus);box-shadow:0 0 0 3px #ffba0733}
.tv-input[aria-invalid=true],.tv-input.is-error{border-color:var(--danger);box-shadow:0 0 0 3px #e2533a2e}
.tv-input[disabled],.tv-input.is-disabled{opacity:.4;cursor:not-allowed}
.tv-field{flex-direction:column;gap:6px;display:flex}
.tv-field-label{font-family:var(--font-display);letter-spacing:.08em;text-transform:uppercase;color:var(--fg-muted);font-size:11px;font-weight:600}
.tv-field-hint{color:var(--fg-subtle);font-size:11px}
.tv-field-hint.is-error{color:var(--danger)}
.tv-badge{border-radius:var(--radius-pill);font-family:var(--font-display);letter-spacing:.04em;align-items:center;gap:6px;padding:4px 10px;font-size:11px;font-weight:600;display:inline-flex}
.tv-badge:before{content:"";background:currentColor;border-radius:50%;flex-shrink:0;width:6px;height:6px}
.tv-badge--bare:before{display:none}
.tv-badge--success{background:var(--success-bg);color:var(--success-fg-on-dark)}
.tv-badge--warning{background:var(--warning-bg);color:var(--warning-fg-on-dark)}
.tv-badge--danger{background:var(--danger-bg);color:var(--danger-fg-on-dark)}
.tv-badge--info{background:var(--info-bg);color:var(--info-fg-on-dark)}
.tv-badge--neutral{background:var(--neutral-bg-on-dark);color:var(--neutral-fg-on-dark)}
.tv-card{background:var(--bg-elevated);border:1px solid var(--hairline);border-radius:var(--radius-md);padding:var(--space-5)}
.tv-kpi{background:var(--bg-elevated);border:1px solid var(--hairline);color:var(--fg);border-radius:14px;flex-direction:column;gap:8px;padding:18px;display:flex}
.tv-kpi-label{font-family:var(--font-display);letter-spacing:.14em;color:var(--fg-subtle);text-transform:uppercase;font-size:10px;font-weight:700}
.tv-kpi-value{font-family:var(--font-display);font-weight:700;font-size:var(--step-3);letter-spacing:-.02em;line-height:1}
.tv-kpi-delta{font-family:var(--font-mono);color:var(--success-fg);font-size:11px}
.tv-kpi-delta.is-down{color:var(--danger)}
.tv-segmented{background:var(--surface-d-1);border:1px solid var(--hairline);border-radius:10px;gap:2px;padding:3px;display:inline-flex}
.tv-segmented button{color:var(--fg-muted);font-family:var(--font-display);cursor:pointer;background:0 0;border:0;border-radius:7px;padding:6px 12px;font-size:12px;font-weight:500}
.tv-segmented button[aria-selected=true],.tv-segmented button.is-active{background:var(--surface-d-3);color:var(--fg)}
.tv-toggle{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:10px;font-size:13px;display:inline-flex}
.tv-toggle-switch{background:var(--surface-d-3);border-radius:var(--radius-pill);width:36px;height:20px;transition:background var(--dur-fast);flex-shrink:0;position:relative}
.tv-toggle-switch:after{content:"";width:16px;height:16px;transition:inset-inline-start var(--dur-fast) var(--ease-out);background:#fff;border-radius:50%;position:absolute;inset-block-start:2px;inset-inline-start:2px}
.tv-toggle[aria-checked=true] .tv-toggle-switch,.tv-toggle.is-on .tv-toggle-switch{background:var(--tv-orange)}
.tv-toggle[aria-checked=true] .tv-toggle-switch:after,.tv-toggle.is-on .tv-toggle-switch:after{inset-inline-start:18px}
.tv-pulse{background:var(--tv-teal-bright);border-radius:50%;width:8px;height:8px;display:inline-block;position:relative;box-shadow:0 0 0 3px #11dddb40}
.tv-pulse:after{content:"";color:var(--tv-teal-bright);opacity:.3;animation:tv-pulse 2s var(--ease-out) infinite;background:currentColor;border-radius:50%;position:absolute;inset:-6px}
.tv-pulse--action{background:var(--tv-orange);box-shadow:0 0 0 3px #f8a32440}
.tv-pulse--action:after{color:var(--tv-orange)}
.tv-pulse--danger{background:var(--danger);box-shadow:0 0 0 3px #e2533a40}
.tv-pulse--danger:after{color:var(--danger)}
@keyframes tv-pulse{0%{opacity:.3;transform:scale(1)}to{opacity:0;transform:scale(2.2)}}
.tv-select{font-family:var(--font-display);font-size:var(--step--1);color:var(--fg);background:var(--surface-d-1) linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 18px) 50% / 6px 6px no-repeat, var(--surface-d-1) linear-gradient(-45deg, transparent 50%, currentColor 50%) calc(100% - 12px) 50% / 6px 6px no-repeat;background-color:var(--surface-d-1);border:1px solid var(--border-strong);appearance:none;cursor:pointer;width:100%;min-height:40px;transition:border-color var(--dur-fast), box-shadow var(--dur-fast);border-radius:10px;outline:none;padding-block:10px;padding-inline:14px 36px}
.tv-select:focus-visible{border-color:var(--focus);box-shadow:0 0 0 3px #ffba0733}
.tv-select[aria-invalid=true],.tv-select.is-error{border-color:var(--danger);box-shadow:0 0 0 3px #e2533a2e}
.tv-select[disabled],.tv-select.is-disabled{opacity:.4;cursor:not-allowed}
.tv-menu{background:var(--bg-elevated);border:1px solid var(--hairline);box-shadow:var(--shadow-lg);min-width:200px;font-family:var(--font-display);font-size:var(--step--1);color:var(--fg);border-radius:10px;padding:6px}
.tv-menu-item{align-items:center;gap:var(--space-2);cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--fg);border-radius:6px;padding:8px 10px;display:flex}
.tv-menu-item:hover,.tv-menu-item[aria-selected=true]{background:var(--surface-d-2)}
.tv-menu-item[aria-checked=true]{color:var(--tv-orange)}
.tv-menu-separator{background:var(--hairline);border:0;height:1px;margin:6px 4px}
.tv-textarea{font-family:var(--font-body);font-weight:400;font-size:var(--step--1);line-height:var(--leading-body);color:var(--fg);background:var(--surface-d-1);border:1px solid var(--border-strong);resize:vertical;width:100%;min-height:96px;transition:border-color var(--dur-fast), box-shadow var(--dur-fast);border-radius:10px;outline:none;padding:10px 14px}
.tv-textarea::placeholder{color:var(--fg-subtle)}
.tv-textarea:focus-visible{border-color:var(--focus);box-shadow:0 0 0 3px #ffba0733}
.tv-textarea[aria-invalid=true],.tv-textarea.is-error{border-color:var(--danger);box-shadow:0 0 0 3px #e2533a2e}
.tv-textarea[disabled],.tv-textarea.is-disabled{opacity:.4;cursor:not-allowed}
.tv-file{justify-content:center;align-items:center;gap:var(--space-2);padding:var(--space-6);border:1.5px dashed var(--border-strong);border-radius:var(--radius-md);background:var(--surface-d-1);color:var(--fg-muted);text-align:center;cursor:pointer;transition:border-color var(--dur-fast), background var(--dur-fast);flex-direction:column;min-height:140px;display:flex}
.tv-file:hover{border-color:var(--tv-orange);background:var(--surface-d-2)}
.tv-file:focus-visible{box-shadow:var(--focus-ring);outline:none}
.tv-file[data-dragging=true],.tv-file.is-dragging{border-color:var(--tv-orange);background:color-mix(in srgb, var(--tv-orange) 8%, transparent);color:var(--fg)}
.tv-file[aria-invalid=true],.tv-file.is-error{border-color:var(--danger);color:var(--danger)}
.tv-file-title{color:var(--fg);font-weight:600}
.tv-file-hint{color:var(--fg-subtle);font-size:11px}
.tv-table{border-collapse:separate;border-spacing:0;width:100%;font-family:var(--font-display);font-size:var(--step--1);color:var(--fg)}
.tv-table thead th{z-index:1;background:var(--bg);text-align:start;letter-spacing:.14em;text-transform:uppercase;color:var(--fg-subtle);border-block-end:1px solid var(--hairline);white-space:nowrap;cursor:default;padding:10px 14px;font-size:10px;font-weight:700;position:sticky;inset-block-start:0}
.tv-table thead th[aria-sort]{cursor:pointer}
.tv-table thead th[aria-sort]:after{content:"↕";opacity:.4;margin-inline-start:6px;font-size:12px}
.tv-table thead th[aria-sort=ascending]:after{content:"↑";opacity:1;color:var(--tv-orange)}
.tv-table thead th[aria-sort=descending]:after{content:"↓";opacity:1;color:var(--tv-orange)}
.tv-table tbody td{border-block-end:1px solid var(--hairline);vertical-align:middle;padding:12px 14px}
.tv-table tbody tr{transition:background var(--dur-fast)}
.tv-table tbody tr:hover{background:var(--surface-d-1)}
.tv-table tbody tr[aria-selected=true]{background:var(--surface-d-2)}
.tv-table tbody tr[aria-selected=true] td{color:var(--fg)}
.tv-table tbody tr:last-child td{border-block-end:0}
.tv-table .tv-table-num{font-family:var(--font-mono);text-align:end;font-variant-numeric:tabular-nums}
[data-density=compact] .tv-btn{border-radius:8px;min-height:30px;padding:6px 12px;font-size:12px}
[data-density=compact] .tv-btn--lg{min-height:36px;font-size:var(--step--1);padding:10px 18px}
[data-density=compact] .tv-input{border-radius:8px;min-height:30px;padding:6px 10px;font-size:12px}
[data-density=compact] .tv-field{gap:4px}
[data-density=compact] .tv-field-label{font-size:10px}
[data-density=compact] .tv-badge{padding:2px 8px;font-size:10px}
[data-density=compact] .tv-kpi{gap:6px;padding:12px}
[data-density=compact] .tv-kpi-value{font-size:var(--step-2)}
[data-density=compact] .tv-segmented{padding:2px}
[data-density=compact] .tv-segmented button{padding:4px 10px;font-size:11px}
[data-density=compact] .tv-card{padding:var(--space-4)}
[data-density=compact] .tv-select{border-radius:8px;min-height:30px;padding-block:6px;padding-inline:10px 30px;font-size:12px}
[data-density=compact] .tv-table thead th{padding:6px 10px}
[data-density=compact] .tv-table tbody td{padding:8px 10px;font-size:12px}
.tv-segmented button{min-width:max-content}
.tv-btn,.tv-badge{white-space:nowrap;min-width:max-content}
.tv-field-label{min-width:max-content}
.tv-i18n-fluid{white-space:normal;overflow-wrap:anywhere;-webkit-hyphens:auto;hyphens:auto;min-width:0}
/* Design tokens only — global resets removed to avoid overriding
   Building OS host layout when loaded as a Module Federation remote.
   The host's Tailwind preflight already handles CSS resets. */
/*
 * Tango Vision Design Tokens — v2
 * Single source of truth for all platform colors, spacing, typography.
 *
 * Brand: AI-native building management OS — digital twins for malls,
 * offices, campuses. Dark-first product. Orange (#F8A324) on deep
 * purple (#5B407F). Montserrat for display/UI, Open Sans Light for
 * long-form body. The wordmark is TANGO.VISION with 0.10em tracking.
 *
 * THREE layers of tokens live here:
 *  1) Brand ramp           --tv-*        (hex; constant across themes)
 *  2) shadcn semantic slots --primary, --background, --border, …
 *     as HSL channels (no hsl() wrapper) consumed via hsl(var(--…)).
 *     These drive every @tv/ui React component and the Tailwind preset.
 *  3) v2 semantic tokens   --bg, --fg, --accent-hover, --hairline,
 *     surface tints, status pairs, focus ring — DIRECT values consumed
 *     by the .tv-* component layer in components.css. These are NOT
 *     HSL channels; reference them bare, e.g. background: var(--bg).
 *
 * Theming: the platform toggles dark mode with the `.dark` class
 * (shadcn / next-themes convention). The v2 handoff toggles with
 * [data-theme]. BOTH are supported — `.dark, [data-theme="dark"]`
 * share one block, `:root, [data-theme="light"]` share the other.
 *
 * See CHANGES.md (handoff) + README for the v1 → v2 migration notes.
 *
 * Note: this file intentionally does NOT @import Google Fonts — a
 * nested @import mid-file violates the CSS spec once bundlers inline
 * stylesheets. Import "@tv/design-tokens/fonts.css" first instead.
 */
/* ------------------------------------------------------------------ */
/* 1 · BRAND RAMP — constant across light/dark                         */
/* ------------------------------------------------------------------ */
:root {
  /* ---------- Orange family ----------
     #F8A324 is canonical for digital surfaces (matches the SVG
     logomark). #FFBA07 is the print-stock equivalent and is also the
     focus ring (higher luminance → more visible on dark + purple).
     Never use both within the same UI element. */
  --tv-orange:       #F8A324;   /* CTAs, eyebrows, accents (canonical) */
  --tv-orange-warm:  #FFBA07;   /* print fill, focus ring, logomark fill */
  --tv-orange-soft:  #FECF6E;   /* radar rings, illustration strokes */
  --tv-orange-deep:  #D28D05;   /* pressed/hover-dark, printed ink */

  /* ---------- Purple / blue ---------- */
  --tv-purple-light: #8869AF;   /* top of gradient, lift on dark */
  --tv-purple-mid:   #6B4D93;   /* gradient mid (was --tv-purple-deep in v1) */
  --tv-purple:       #5B407F;   /* brand surface, card bg */
  --tv-purple-deep:  #3F2B5C;   /* deep brand shadow (genuinely darker — v2) */
  --tv-blue-mid:     #2661AF;   /* business-card gradient bottom */
  --tv-blue:         #0D46AB;   /* polygraphy accent, secondary action */

  /* ---------- Data / realtime ---------- */
  --tv-teal:         #2A7884;   /* chart series 04 */
  --tv-teal-bright:  #11DDDB;   /* live/info, chart series 02 */

  /* ---------- Neutrals (warm sand + cool dark) ---------- */
  --tv-black:        #111523;   /* primary ink, dark text on light */
  --tv-ink:          #322927;   /* warm ink, body on paper */
  --tv-gray-500:     #6A6B7A;   /* neutral mid, default icon on light */
  --tv-gray-300:     #9D9386;   /* warm gray, print secondary */
  --tv-gray-200:     #BDBDBD;
  --tv-cool-100:     #D7E4E5;   /* cool tint, dividers on print */
  --tv-sand-100:     #E0DAD3;
  --tv-sand-200:     #CFC8B9;
  --tv-sand-300:     #B5AB9B;
  --tv-white:        #FFFFFF;

  /* ---------- v1 ALIASES (deprecated — remove in v3) ---------- */
  --tv-gray-900:     var(--tv-black);     /* was #17171C — collapsed */
  --tv-gray-700:     var(--tv-ink);       /* was a dup of --tv-ink */
  --tv-gray-100:     var(--tv-cool-100);  /* was cool, mislabeled gray */

  /* ---------- Signature gradients ---------- */
  --tv-gradient-brand:  linear-gradient(180deg, var(--tv-purple) 0%, var(--tv-blue-mid) 100%);
  --tv-gradient-purple: linear-gradient(180deg, color-mix(in srgb, var(--tv-purple-light) 85%, transparent) 0%, color-mix(in srgb, var(--tv-purple-mid) 95%, transparent) 100%);
  --tv-gradient-warm:   linear-gradient(180deg, var(--tv-orange) 0%, var(--tv-orange-deep) 100%);

  /* ---------- Typography ---------- */
  /* --font-display and --font-sans intentionally alias the same family
     (Montserrat). They stay separate so swapping in Gotham Pro for
     display surfaces is a one-token change. */
  --font-display: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans:    "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    "Open Sans", "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step--2: 0.75rem;     /* 12 — captions, eyebrows */
  --step--1: 0.875rem;    /* 14 — small UI */
  --step-0:  1rem;        /* 16 — body */
  --step-1:  1.125rem;    /* 18 */
  --step-2:  1.5rem;      /* 24 — subhead */
  --step-3:  2rem;        /* 32 — H3 */
  --step-4:  2.5rem;      /* 40 — H2 */
  --step-5:  3rem;        /* 48 — H1 */
  --step-6:  4.5rem;      /* 72 — roll-up headline */
  --step-7:  6rem;        /* 96 — hero display */

  --leading-tight: 1.05;
  --leading-snug:  1.2;
  --leading-body:  1.55;
  --leading-loose: 1.7;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.10em;      /* TANGO.VISION wordmark */
  --tracking-xwide:  0.24em;      /* DIGITAL TWINS tag, eyebrows */

  /* ---------- Shape ---------- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;            /* default card */
  --radius-lg:   20px;            /* QR tiles, flyer cards */
  --radius-xl:   28px;            /* hero panels */
  --radius-2xl:  40px;
  --radius-pill: 999px;

  /* ---------- Elevation ---------- */
  --shadow-sm: 0 1px 2px rgba(17,21,35,0.06), 0 1px 1px rgba(17,21,35,0.04);
  --shadow-md: 0 6px 18px rgba(17,21,35,0.10), 0 2px 4px rgba(17,21,35,0.05);
  --shadow-lg: 0 20px 40px rgba(17,21,35,0.16), 0 6px 12px rgba(17,21,35,0.08);
  --shadow-glow-orange: 0 0 0 1px rgba(248,163,36,0.35), 0 10px 30px rgba(248,163,36,0.25);
  --shadow-glow-purple: 0 0 0 1px rgba(91,64,128,0.40), 0 12px 36px rgba(91,64,128,0.30);
  --shadow-glow-teal:   0 0 0 1px rgba(17,221,219,0.30), 0 8px 24px rgba(17,221,219,0.20);

  /* ---------- Spacing (8-point) ---------- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ---------- Motion ---------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   140ms;
  --dur-base:   240ms;
  --dur-slow:   420ms;

  /* ---------- v2 semantic: theme-INVARIANT direct values ---------- */
  /* Always-light surfaces (docs, auth, print) regardless of theme. */
  --bg-page:   #FAFAF7;
  --bg-paper:  #F4F3EE;
  --surface:   #FFFFFF;          /* negative-space white, used sparingly */

  /* Ink for content that always sits on a light surface. */
  --fg-on-light:        #111523;
  --fg-on-light-body:   #322927; /* warm ink for body copy on paper */
  --fg-on-light-muted:  #6A6B7A;
  --fg-mono-light:      rgba(17,21,35,0.55);
  --border-on-light:    rgba(17,21,35,0.08);

  /* Accent companions (the canonical --accent stays HSL for shadcn). */
  --accent-hover: var(--tv-orange-deep);

  /* Status hues. --warning / --info collide with shadcn's HSL slots,
     so they are NOT redefined here as direct values — the .tv-*
     component layer uses --tv-orange / --tv-teal-bright + the tint
     pairs below. --danger is free (shadcn uses --destructive). */
  --danger: #E2533A;

  /* Status tint pairs (background + foreground for badges/banners).
     The -fg-on-dark variants flip per theme further down. */
  --success-bg: rgba(59,181,138,0.16);
  --success-fg: #3BB58A;
  --warning-bg: rgba(248,163,36,0.18);
  --warning-fg: #8A5A07;
  --danger-bg:  rgba(226,83,58,0.16);
  --danger-fg:  #9E3C28;
  --info-bg:    rgba(17,221,219,0.18);
  --info-fg:    #0B8684;
  --neutral-bg: rgba(17,21,35,0.08);
  --neutral-fg: #111523;

  /* Light-surface tint ramp (constant; used by .tv-on-light wrappers). */
  --surface-l-1: rgba(17,21,35,0.03);  /* hover on light */
  --surface-l-2: rgba(17,21,35,0.06);  /* selected on light */
  --surface-l-3: rgba(17,21,35,0.10);  /* heavy fill on light */
}
/* ------------------------------------------------------------------ */
/* 2 + 3 · LIGHT THEME (default) — shadcn HSL slots + v2 direct values */
/*   :root and [data-theme="light"] share this block.                  */
/* ------------------------------------------------------------------ */
:root,
[data-theme="light"] {
  /* --- shadcn HSL channels (consumed via hsl(var(--…))) --- */
  --primary: 35 94% 56%;              /* #F8A324 — Tango orange */
  --primary-foreground: 232 35% 11%;  /* #111523 — ink on orange */

  --background: 60 27% 98%;           /* #FAFAF7 — warm off-white */
  --foreground: 232 35% 11%;          /* #111523 */
  --card: 0 0% 100%;
  --card-foreground: 232 35% 11%;
  --popover: 0 0% 100%;
  --popover-foreground: 232 35% 11%;

  --secondary: 266 33% 38%;           /* #5B407F — deep purple */
  --secondary-foreground: 0 0% 100%;
  --muted: 40 10% 90%;                /* warm gray */
  --muted-foreground: 236 6% 45%;     /* #6A6B7A */
  --accent: 35 94% 56%;               /* same as primary on light */
  --accent-foreground: 232 35% 11%;

  --destructive: 9 73% 55%;           /* #E2533A */
  --destructive-foreground: 0 0% 100%;
  --success: 158 51% 47%;             /* #3BB58A */
  --success-foreground: 0 0% 100%;
  --warning: 35 94% 56%;              /* brand orange */
  --warning-foreground: 232 35% 11%;
  --info: 179 86% 47%;                /* #11DDDB */
  --info-foreground: 232 35% 11%;

  --border: 232 35% 11% / 0.10;       /* rgba(17,21,35,0.10) */
  --input: 232 35% 11% / 0.10;
  --ring: 43 100% 51%;                /* #FFBA07 — focus */

  --sidebar-background: 60 27% 98%;
  --sidebar-foreground: 232 35% 11%;
  --sidebar-primary: 35 94% 56%;
  --sidebar-primary-foreground: 232 35% 11%;
  --sidebar-accent: 40 10% 90%;
  --sidebar-accent-foreground: 232 35% 11%;
  --sidebar-border: 232 35% 11% / 0.10;
  --sidebar-ring: 43 100% 51%;

  --chart-1: 35 94% 56%;              /* orange */
  --chart-2: 188 52% 34%;             /* teal */
  --chart-3: 266 33% 38%;             /* purple */
  --chart-4: 218 85% 36%;             /* blue */
  --chart-5: 179 86% 47%;             /* teal-bright */

  --radius: 0.75rem;                  /* 12px — default card */

  /* --- v2 direct semantic tokens (light) --- */
  --bg:          #FAFAF7;
  --bg-elevated: #FFFFFF;
  --bg-panel:    #F4F3EE;

  --fg:          #111523;
  --fg-muted:    rgba(17,21,35,0.68);
  --fg-subtle:   rgba(17,21,35,0.45);
  --fg-mono-dark: rgba(17,21,35,0.55);  /* JetBrains on light */

  --hairline:      rgba(17,21,35,0.08); /* card / table hairline border */
  --border-strong: rgba(17,21,35,0.16);

  --accent-on-accent: #FFFFFF;          /* white on orange when light */

  /* Focus ring needs darker amber on light (#FFBA07 fails contrast). */
  --focus:            var(--tv-orange-deep);
  --focus-ring:       0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);
  --focus-ring-light: 0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);

  /* Status fg-on-dark variants flip to their light-on-light tints. */
  --success-fg-on-dark: var(--success-fg);
  --warning-fg-on-dark: var(--warning-fg);
  --danger-fg-on-dark:  var(--danger-fg);
  --info-fg-on-dark:    var(--info-fg);
  --neutral-bg-on-dark: var(--neutral-bg);
  --neutral-fg-on-dark: var(--neutral-fg);

  /* Surface tints resolve to the dark-on-light ramp. */
  --surface-d-1: var(--surface-l-1);
  --surface-d-2: var(--surface-l-2);
  --surface-d-3: var(--surface-l-3);
  --surface-d-4: rgba(17,21,35,0.14);

  color-scheme: light;
}
/* ------------------------------------------------------------------ */
/* DARK THEME — the primary product surface.                           */
/*   .dark (shadcn/next-themes) and [data-theme="dark"] share this.    */
/*   App chrome #0E1020, elevated panels #181A2E.                      */
/* ------------------------------------------------------------------ */
.dark,
[data-theme="dark"] {
  /* --- shadcn HSL channels --- */
  --primary: 35 94% 56%;
  --primary-foreground: 232 35% 11%;

  --background: 233 38% 9%;           /* #0E1020 — app bg */
  --foreground: 0 0% 100%;
  --card: 233 31% 14%;                /* #181A2E — elevated */
  --card-foreground: 0 0% 100%;
  --popover: 233 31% 14%;
  --popover-foreground: 0 0% 100%;

  --secondary: 266 33% 38%;
  --secondary-foreground: 0 0% 100%;
  --muted: 233 28% 17%;               /* #1F223A — panel */
  --muted-foreground: 0 0% 100% / 0.68;
  --accent: 35 94% 56%;
  --accent-foreground: 232 35% 11%;

  --destructive: 9 73% 55%;
  --destructive-foreground: 0 0% 100%;
  --success: 158 51% 47%;
  --success-foreground: 0 0% 100%;
  --warning: 35 94% 56%;
  --warning-foreground: 232 35% 11%;
  --info: 179 86% 47%;
  --info-foreground: 232 35% 11%;

  --border: 0 0% 100% / 0.10;         /* rgba(255,255,255,0.10) */
  --input: 0 0% 100% / 0.10;
  --ring: 43 100% 51%;                /* #FFBA07 focus */

  --sidebar-background: 233 38% 9%;
  --sidebar-foreground: 0 0% 100%;
  --sidebar-primary: 35 94% 56%;
  --sidebar-primary-foreground: 232 35% 11%;
  --sidebar-accent: 233 28% 17%;
  --sidebar-accent-foreground: 0 0% 100%;
  --sidebar-border: 0 0% 100% / 0.10;
  --sidebar-ring: 43 100% 51%;

  --chart-1: 35 94% 58%;
  --chart-2: 179 86% 47%;
  --chart-3: 270 41% 60%;
  --chart-4: 218 85% 56%;
  --chart-5: 158 51% 55%;

  --radius: 0.75rem;

  /* --- v2 direct semantic tokens (dark) --- */
  --bg:          #0E1020;
  --bg-elevated: #181A2E;
  --bg-panel:    #1F223A;

  --fg:          #FFFFFF;
  --fg-muted:    rgba(255,255,255,0.68);
  --fg-subtle:   rgba(255,255,255,0.45);
  --fg-mono-dark: rgba(255,255,255,0.55);

  --hairline:      rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.22);

  --accent-on-accent: #111523;          /* black on orange, AAA 10.2 */

  --focus:      #FFBA07;
  --focus-ring: 0 0 0 2px var(--bg), 0 0 0 4px var(--focus);
  --focus-ring-light: 0 0 0 2px var(--bg-page), 0 0 0 4px var(--tv-orange-deep);

  /* Status fg-on-dark variants brighten for dark surfaces. */
  --success-fg-on-dark: #5BD0A4;
  --warning-fg-on-dark: var(--tv-orange-warm);
  --danger-fg-on-dark:  #F0816B;
  --info-fg-on-dark:    var(--tv-teal-bright);
  --neutral-bg-on-dark: rgba(255,255,255,0.10);
  --neutral-fg-on-dark: var(--fg);

  /* Surface tints resolve to the white-on-dark ramp. */
  --surface-d-1: rgba(255,255,255,0.04);
  --surface-d-2: rgba(255,255,255,0.06);
  --surface-d-3: rgba(255,255,255,0.10);
  --surface-d-4: rgba(255,255,255,0.14);

  color-scheme: dark;
}
/* ------------------------------------------------------------------ */
/* Reduced motion — system default (v2).                               */
/* Zeroes the duration tokens + forces single-iteration animations.    */
/* The radar pulse re-enables itself inside a no-preference gate.       */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
  }
  *, *::before, *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
  }
}
/* ------------------------------------------------------------------ */
/* Base resets                                                         */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after {
  border-color: hsl(var(--border));
}
body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
}
/* Keyboard focus — always visible, always brand amber. The .tv-*
   component layer additionally renders a 2-ring box-shadow focus ring
   via var(--focus-ring); this outline is the platform-wide default for
   everything else. */
:where(*):focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}
/*
 * Tango Vision — Brand semantic classes
 *
 * Opt-in helpers for marketing surfaces, brand lockups, and the
 * signature orange accent rule. Import this alongside tokens.css on
 * any surface that shows brand identity (homepage, auth, pricing,
 * about, onboarding, kiosks, signage). Product UIs that live entirely
 * inside tv-console / Building OS typically only need tokens.css.
 *
 *   import '@tv/design-tokens/tokens.css';
 *   import '@tv/design-tokens/brand.css';
 *
 * Voice — taken from the brand guide:
 *   - Never cheerful. Quietly confident, systems-minded.
 *   - No emoji. No exclamation marks.
 *   - Headlines are blunt manifestos, not claims.
 *   - ALL-CAPS for mission statements + eyebrow labels (wide tracking).
 *   - Title Case is almost never used.
 */
/* ------------------------------------------------------------------ */
/* Display / heading classes                                           */
/* ------------------------------------------------------------------ */
.tv-display,
h1.tv {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-7);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: hsl(var(--foreground));
  text-wrap: balance;
}
.tv-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-5);
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.tv-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-4);
  line-height: var(--leading-snug);
  text-wrap: balance;
}
.tv-h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-3);
  line-height: var(--leading-snug);
  text-wrap: balance;
}
.tv-subhead {
  font-family: var(--font-display);
  font-weight: 500;            /* Montserrat Medium — brand subhead */
  font-size: var(--step-2);
  line-height: var(--leading-snug);
  color: var(--tv-orange);
}
/* On dark surfaces the subhead uses the warmer orange for legibility. */
.tv-on-dark .tv-subhead { color: var(--tv-orange-warm); }
.tv-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step--2);
  letter-spacing: var(--tracking-xwide);
  text-transform: uppercase;
  color: var(--tv-orange);
}
.tv-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
/* ------------------------------------------------------------------ */
/* Body / content classes                                              */
/* ------------------------------------------------------------------ */
.tv-body {
  font-family: var(--font-body);
  font-weight: 300;            /* Open Sans Light — brand voice */
  font-size: var(--step-0);
  line-height: var(--leading-body);
  text-wrap: pretty;
}
/* Open Sans Light gets fuzzy at small sizes on Windows ClearType.
   Anything 14px or smaller bumps to Regular (400). */
.tv-body-sm {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--step--1);
  line-height: var(--leading-body);
  text-wrap: pretty;
}
.tv-body-strong {
  font-weight: 500;
}
.tv-caption {
  font-family: var(--font-display);
  font-size: var(--step--2);
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.02em;
}
.tv-code {
  font-family: var(--font-mono);
  font-size: 0.92em;
}
/* ------------------------------------------------------------------ */
/* Signature accent — the 64×6 orange bar under hero headlines         */
/* ------------------------------------------------------------------ */
.tv-accent-rule::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: var(--tv-orange);
  margin-top: 18px;
}
/* ------------------------------------------------------------------ */
/* Surface helpers                                                     */
/* ------------------------------------------------------------------ */
.tv-surface-brand {
  background: var(--tv-gradient-brand);
  color: #FFFFFF;
}
.tv-surface-purple {
  background: var(--tv-purple);
  color: #FFFFFF;
}
.tv-surface-dark {
  background: #0E1020;
  color: #FFFFFF;
}
.tv-surface-panel {
  background: #181A2E;
  color: #FFFFFF;
}
.tv-surface-sand {
  background: #FAFAF7;
  color: var(--tv-black);
}
/* ------------------------------------------------------------------ */
/* Radar-ring motif — the signature background treatment               */
/* Faint concentric rings radiating from top-right at 10% opacity.     */
/* Apply `.tv-radar-bg` to any dark surface for brand ambience.        */
/* ------------------------------------------------------------------ */
.tv-radar-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.tv-radar-bg::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      transparent 0%, transparent 20%,
      rgba(255,255,255,0.02) 22%, rgba(255,255,255,0.02) 24%,
      transparent 26%, transparent 34%,
      rgba(255,255,255,0.03) 36%, rgba(255,255,255,0.03) 38%,
      transparent 40%, transparent 48%,
      rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.04) 52%,
      transparent 54%, transparent 62%,
      rgba(255,255,255,0.06) 64%, rgba(255,255,255,0.06) 66%,
      transparent 68%, transparent 76%,
      rgba(255,255,255,0.08) 78%, rgba(255,255,255,0.08) 80%,
      transparent 82%
    );
  pointer-events: none;
  z-index: -1;
}
/* Radar pulse — used on live indicators, map sensors, loading spinners */
.tv-radar-pulse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tv-radar-pulse::before,
.tv-radar-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--tv-orange);
  animation: tv-radar-pulse 2s var(--ease-out) infinite;
}
.tv-radar-pulse::after {
  animation-delay: 1s;
}
@keyframes tv-radar-pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0;   }
}
/* ------------------------------------------------------------------ */
/* Utility: brand-aligned focus ring for non-shadcn elements           */
/* ------------------------------------------------------------------ */
.tv-focus-ring:focus-visible {
  outline: 2px solid var(--tv-orange-warm);
  outline-offset: 2px;
}
/*$vite$:1*/