/* =========================================
   1. Fonts (Roboto & Pretendard)
   ========================================= */
@font-face {
    font-family: 'CommonFont';
    font-weight: 400; /*Regular */
    src: local('Roboto Regular'),
         url('../fonts/Roboto-Regular.woff2') format('woff2');
    
    /* 영문 및 숫자, 기본 기호 유니코드 범위 (A-Z, a-z, 0-9, 기본 기호) */
    unicode-range: U+0000-007F, U+0080-00FF, U+0100-017F, U+0180-024F;
    font-display: swap;/* 폰트 로딩 전 대체 폰트를 보여줌 */
}

@font-face {
    font-family: 'CommonFont';
    font-weight: 500; /* Medium */
    src: local('Roboto Medium'),
         url('../fonts/Roboto-Medium.woff2') format('woff2');

    unicode-range: U+0000-007F, U+0080-00FF, U+0100-017F, U+0180-024F;
    font-display: swap;
}

@font-face {
    font-family: 'CommonFont';
    font-weight: 700; /* Bold */
    src: local('Roboto Bold'),
         url('../fonts/Roboto-Bold.woff2') format('woff2');

    unicode-range: U+0000-007F, U+0080-00FF, U+0100-017F, U+0180-024F;
    font-display: swap;
}

@font-face {
    font-family: 'CommonFont';
    font-weight: 400; /* Regular */
    src: local('Pretendard Regular'),
         url('../fonts/PretendardStd-Regular.woff2') format('woff2');
    
    /* 한국어 유니코드 범위 */
    unicode-range: U+1100-11FF, U+3000-303F, U+3130-318F, U+3200-32FF, U+A960-A97F, U+AC00-D7A3, U+D7B0-D7FF, U+FF00-FFEF;
    font-display: swap;
}

@font-face {
    font-family: 'CommonFont';
    font-weight: 500; /* Medium */
    src: local('Pretendard Medium'),
         url('../fonts/PretendardStd-Medium.woff2') format('woff2');

    unicode-range: U+1100-11FF, U+3000-303F, U+3130-318F, U+3200-32FF, U+A960-A97F, U+AC00-D7A3, U+D7B0-D7FF, U+FF00-FFEF;
    font-display: swap;
}

@font-face {
    font-family: 'CommonFont';
    font-weight: 700; /* Bold */
    src: local('Pretendard Bold'),
         url('../fonts/PretendardStd-Bold.woff2') format('woff2');

    unicode-range: U+1100-11FF, U+3000-303F, U+3130-318F, U+3200-32FF, U+A960-A97F, U+AC00-D7A3, U+D7B0-D7FF, U+FF00-FFEF;
    font-display: swap;
}

/* =========================================
   2. CSS Variables (Theme)
   ========================================= */
:root {
  /* Colors */
  --background: #0b0c10;
  --foreground: #fff;
  --card: #1f2833;
  --card-foreground: #fff;
  --popover: #1f2833;
  --popover-foreground: #fff;
  --primary: #45a29e;
  --primary-foreground: #0b0c10;
  --secondary: #1f2833;
  --secondary-foreground: #fff;
  --muted: #1f2833;
  --muted-foreground: #a0a0a0;
  --accent: #66fcf1;
  --accent-foreground: #0b0c10;
  --destructive: #e40014;
  --destructive-foreground: #e40014;
  --border: #2a3a4a;
  --input: #2a3a4a;
  --ring: #45a29e;

  /* Charts */
  --chart-1: #45a29e;
  --chart-2: #66fcf1;
  --chart-3: #1f2833;
  --chart-4: #45a29e;
  --chart-5: #66fcf1;

  /* Sidebar */
  --sidebar: #0b0c10;
  --sidebar-foreground: #fff;
  --sidebar-primary: #45a29e;
  --sidebar-primary-foreground: #0b0c10;
  --sidebar-accent: #1f2833;
  --sidebar-accent-foreground: #fff;
  --sidebar-border: #2a3a4a;
  --sidebar-ring: #45a29e;

  /* Tailwind Palette */
  --color-red-50: #fef2f2;
  --color-red-100: #ffe2e2;
  --color-red-400: #ff6568;
  --color-red-500: #fb2c36;
  --color-red-600: #e40014;
  --color-green-400: #05df72;
  --color-cyan-50: #ecfeff;
  --color-cyan-100: #cefafe;
  --color-cyan-200: #a2f4fd;
  --color-cyan-400: #00d2ef;
  --color-cyan-600: #0092b5;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5dc;
  --color-gray-400: #99a1af;
  --color-gray-500: #6a7282;
  --color-gray-600: #4a5565;
  --color-gray-700: #364153;
  --color-gray-800: #1e2939;
  --color-gray-900: #101828;
  --color-black: #000;
  --color-white: #fff;

  /* Spacing & Layout */
  --spacing: .25rem;
  --container-md: 28rem;
  --container-lg: 32rem;
  --container-2xl: 42rem;
  --container-3xl: 48rem;
  --container-4xl: 56rem;
  --container-5xl: 64rem;
  --container-7xl: 80rem;
  --radius: .625rem;
  --radius-2xl: 1rem;

  /* Typography */
  --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;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --tracking-wide: .025em;
  --tracking-wider: .05em;
  --leading-tight: 1.25;
  --leading-relaxed: 1.625;
  --default-font-family: 'CommonFont', sans-serif;
  --default-mono-font-family: 'D2Coding', 'Roboto Mono', monospace;

  /* Effects */
  --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  --blur-sm: 8px;
  --blur-md: 12px;
  --blur-3xl: 64px;
  --aspect-video: 16 / 9;
  --default-transition-duration: .15s;
  --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

@supports (color: lab(0% 0 0)) {
  :root {
    --color-red-50: lab(96.5005% 4.18511 1.52329);
    --color-red-100: lab(92.243% 10.2865 3.83865);
    --color-red-400: lab(63.7053% 60.7449 31.3109);
    --color-red-500: lab(55.4814% 75.0732 48.8528);
    --color-red-600: lab(48.4493% 77.4328 61.5452);
    --color-green-400: lab(78.503% -64.9265 39.7492);
    --color-cyan-50: lab(98.3303% -5.97429 -2.62109);
    --color-cyan-100: lab(95.3146% -13.8285 -6.84733);
    --color-cyan-200: lab(91.0821% -24.0435 -12.8306);
    --color-cyan-400: lab(76.6045% -40.9406 -29.6231);
    --color-cyan-600: lab(55.1767% -26.7496 -30.5138);
    --color-gray-50: lab(98.2596% -.247031 -.706708);
    --color-gray-100: lab(96.1596% -.082314 -1.13575);
    --color-gray-200: lab(91.6229% -.159085 -2.26791);
    --color-gray-300: lab(85.1236% -.612259 -3.7138);
    --color-gray-400: lab(65.9269% -.832707 -8.17474);
    --color-gray-500: lab(47.7841% -.393212 -10.0268);
    --color-gray-600: lab(35.6337% -1.58697 -10.8425);
    --color-gray-700: lab(27.1134% -.956401 -12.3224);
    --color-gray-800: lab(16.1051% -1.18239 -11.7533);
    --color-gray-900: lab(8.11897% .811279 -12.254);
    --destructive: lab(48.4493% 77.4328 61.5452);
    --destructive-foreground: lab(48.4493% 77.4328 61.5452);
  }
}

/* =========================================
   3. Base Styles (Reset)
   ========================================= */
*, :before, :after, ::backdrop {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-translate-z: 0;
  --tw-rotate-x: initial;
  --tw-rotate-y: initial;
  --tw-rotate-z: initial;
  --tw-skew-x: initial;
  --tw-skew-y: initial;
  --tw-space-y-reverse: 0;
  --tw-border-style: solid;
  --tw-gradient-position: initial;
  --tw-gradient-from: #0000;
  --tw-gradient-via: #0000;
  --tw-gradient-to: #0000;
  --tw-gradient-stops: initial;
  --tw-gradient-via-stops: initial;
  --tw-gradient-from-position: 0%;
  --tw-gradient-via-position: 50%;
  --tw-gradient-to-position: 100%;
  --tw-leading: initial;
  --tw-font-weight: initial;
  --tw-tracking: initial;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-color: initial;
  --tw-shadow-alpha: 100%;
  --tw-inset-shadow: 0 0 #0000;
  --tw-inset-shadow-color: initial;
  --tw-inset-shadow-alpha: 100%;
  --tw-ring-color: initial;
  --tw-ring-shadow: 0 0 #0000;
  --tw-inset-ring-color: initial;
  --tw-inset-ring-shadow: 0 0 #0000;
  --tw-ring-inset: initial;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-outline-style: solid;
  --tw-blur: initial;
  --tw-brightness: initial;
  --tw-contrast: initial;
  --tw-grayscale: initial;
  --tw-hue-rotate: initial;
  --tw-invert: initial;
  --tw-opacity: initial;
  --tw-saturate: initial;
  --tw-sepia: initial;
  --tw-drop-shadow: initial;
  --tw-drop-shadow-color: initial;
  --tw-drop-shadow-alpha: 100%;
  --tw-drop-shadow-size: initial;
  --tw-backdrop-blur: initial;
  --tw-backdrop-brightness: initial;
  --tw-backdrop-contrast: initial;
  --tw-backdrop-grayscale: initial;
  --tw-backdrop-hue-rotate: initial;
  --tw-backdrop-invert: initial;
  --tw-backdrop-opacity: initial;
  --tw-backdrop-saturate: initial;
  --tw-backdrop-sepia: initial;
  --tw-duration: initial;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scale-z: 1;
  --tw-animation-delay: 0s;
  --tw-animation-direction: normal;
  --tw-animation-duration: initial;
  --tw-animation-fill-mode: forwards;
  --tw-animation-iteration-count: 1;
  --tw-enter-opacity: 1;
  --tw-enter-rotate: 0;
  --tw-enter-scale: 1;
  --tw-enter-translate-x: 0;
  --tw-enter-translate-y: 0;
  --tw-exit-opacity: 1;
  --tw-exit-rotate: 0;
  --tw-exit-scale: 1;
  --tw-exit-translate-x: 0;
  --tw-exit-translate-y: 0;
  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: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--default-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul { list-style-type: none; }

hr { height: 0; color: inherit; border-top-width: 1px; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
code, kbd, samp, pre {
  font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
  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; }
button, input, select, optgroup, textarea {
  font: inherit;
  color: inherit;
  opacity: 1;
  background-color: #0000;
  border-radius: 0;
}
img, svg, video, canvas, audio, iframe, embed, object {
  vertical-align: middle;
  display: block;
}
img, video { max-width: 100%; height: auto; }
[hidden] { display: none !important; }
* { border-color: var(--border); outline-color: var(--ring); }

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

#client-logos {
  -ms-overflow-style: none;  /* IE, Edge에서 숨김 */
  scrollbar-width: none;  /* Firefox에서 숨김 */
}
#client-logos::-webkit-scrollbar {
  display: none;  /* Chrome, Safari, Opera에서 숨김 */
}

/* =========================================
   4. Utility Classes
   ========================================= */
.pointer-events-none { pointer-events: none; }
.sr-only {
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.absolute { position: absolute; }
.fixed { position: fixed; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.inset-2 { inset: calc(var(--spacing) * 2); }
.-top-1 { top: calc(var(--spacing) * -1); }
.-top-4 { top: calc(var(--spacing) * -4); }
.-top-6 { top: calc(var(--spacing) * -6); }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.top-1\/4 { top: 25%; }
.top-2 { top: calc(var(--spacing) * 2); }
.top-4 { top: calc(var(--spacing) * 4); }
.top-\[30\%\] { top: 30%; }
.top-\[35\%\] { top: 35%; }
.-right-1 { right: calc(var(--spacing) * -1); }
.right-0 { right: 0; }
.right-1\/4 { right: 25%; }
.right-4 { right: calc(var(--spacing) * 4); }
.right-8 { right: calc(var(--spacing) * 8); }
.right-\[32\%\] { right: 32%; }
.right-\[35\%\] { right: 35%; }
.-bottom-1 { bottom: calc(var(--spacing) * -1); }
.-bottom-6 { bottom: calc(var(--spacing) * -6); }
.-bottom-8 { bottom: calc(var(--spacing) * -8); }
.-bottom-18 { bottom: calc(var(--spacing) * -18); }
.bottom-0 { bottom: 0; }
.bottom-1\/4 { bottom: 25%; }
.bottom-4 { bottom: calc(var(--spacing) * 4); }
.bottom-8 { bottom: calc(var(--spacing) * 8); }
.bottom-\[30\%\] { bottom: 30%; }
.bottom-\[35\%\] { bottom: 35%; }
.-left-1 { left: calc(var(--spacing) * -1); }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.left-4 { left: calc(var(--spacing) * 4); }
.left-8 { left: calc(var(--spacing) * 8); }
.left-\[28\%\] { left: 28%; }
.left-\[42\%\] { left: 42%; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.container { width: 100%; }
@media (min-width: 40rem) { .container { max-width: 40rem; } }
@media (min-width: 48rem) { .container { max-width: 48rem; } }
@media (min-width: 64rem) { .container { max-width: 64rem; } }
@media (min-width: 80rem) { .container { max-width: 80rem; } }
@media (min-width: 96rem) { .container { max-width: 96rem; } }
.mx-4 { margin-inline: calc(var(--spacing) * 4); }
.mx-auto { margin-inline: auto; }
.mt-0\.5 { margin-top: calc(var(--spacing) * .5); }
.mt-2 { margin-top: calc(var(--spacing) * 2); }
.mt-4 { margin-top: calc(var(--spacing) * 4); }
.mt-6 { margin-top: calc(var(--spacing) * 6); }
.mt-8 { margin-top: calc(var(--spacing) * 8); }
.mt-10 { margin-top: calc(var(--spacing) * 10); }
.mt-12 { margin-top: calc(var(--spacing) * 12); }
.mr-2 { margin-right: calc(var(--spacing) * 2); }
.mb-1 { margin-bottom: calc(var(--spacing) * 1); }
.mb-2 { margin-bottom: calc(var(--spacing) * 2); }
.mb-3 { margin-bottom: calc(var(--spacing) * 3); }
.mb-4 { margin-bottom: calc(var(--spacing) * 4); }
.mb-5 { margin-bottom: calc(var(--spacing) * 5); }
.mb-6 { margin-bottom: calc(var(--spacing) * 6); }
.mb-8 { margin-bottom: calc(var(--spacing) * 8); }
.mb-10 { margin-bottom: calc(var(--spacing) * 10); }
.mb-12 { margin-bottom: calc(var(--spacing) * 12); }
.mb-16 { margin-bottom: calc(var(--spacing) * 16); }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.aspect-\[9\/19\.5\] { aspect-ratio: 9 / 19.5; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-video { aspect-ratio: var(--aspect-video); }
.size-8 { width: calc(var(--spacing) * 8); height: calc(var(--spacing) * 8); }
.size-9 { width: calc(var(--spacing) * 9); height: calc(var(--spacing) * 9); }
.size-10 { width: calc(var(--spacing) * 10); height: calc(var(--spacing) * 10); }
.h-0\.5 { height: calc(var(--spacing) * .5); }
.h-1 { height: calc(var(--spacing) * 1); }
.h-1\.5 { height: calc(var(--spacing) * 1.5); }
.h-2 { height: calc(var(--spacing) * 2); }
.h-3 { height: calc(var(--spacing) * 3); }
.h-4 { height: calc(var(--spacing) * 4); }
.h-5 { height: calc(var(--spacing) * 5); }
.h-6 { height: calc(var(--spacing) * 6); }
.h-7 { height: calc(var(--spacing) * 7); }
.h-8 { height: calc(var(--spacing) * 8); }
.h-9 { height: calc(var(--spacing) * 9); }
.h-10 { height: calc(var(--spacing) * 10); }
.h-12 { height: calc(var(--spacing) * 12); }
.h-14 { height: calc(var(--spacing) * 14); }
.h-16 { height: calc(var(--spacing) * 16); }
.h-20 { height: calc(var(--spacing) * 20); }
.h-48 { height: calc(var(--spacing) * 48); }
.h-56 { height: calc(var(--spacing) * 56); }
.h-96 { height: calc(var(--spacing) * 96); }
.h-\[500px\] { height: 500px; }
.h-full { height: 100%; }
.max-h-\[90vh\] { max-height: 90vh; }
.min-h-screen { min-height: 100vh; }
.w-1\.5 { width: calc(var(--spacing) * 1.5); }
.w-2 { width: calc(var(--spacing) * 2); }
.w-3 { width: calc(var(--spacing) * 3); }
.w-3\/4 { width: 75%; }
.w-4 { width: calc(var(--spacing) * 4); }
.w-5 { width: calc(var(--spacing) * 5); }
.w-6 { width: calc(var(--spacing) * 6); }
.w-7 { width: calc(var(--spacing) * 7); }
.w-8 { width: calc(var(--spacing) * 8); }
.w-10 { width: calc(var(--spacing) * 10); }
.w-12 { width: calc(var(--spacing) * 12); }
.w-14 { width: calc(var(--spacing) * 14); }
.w-16 { width: calc(var(--spacing) * 16); }
.w-20 { width: calc(var(--spacing) * 20); }
.w-24 { width: calc(var(--spacing) * 24); }
.w-32 { width: calc(var(--spacing) * 32); }
.w-56 { width: calc(var(--spacing) * 56); }
.w-96 { width: calc(var(--spacing) * 96); }
.w-\[140px\] { width: 140px; }
.w-\[280px\] { width: 280px; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.max-w-2xl { max-width: var(--container-2xl); }
.max-w-3xl { max-width: var(--container-3xl); }
.max-w-4xl { max-width: var(--container-4xl); }
.max-w-5xl { max-width: var(--container-5xl); }
.max-w-7xl { max-width: var(--container-7xl); }
.max-w-\[70\%\] { max-width: 70%; }
.max-w-lg { max-width: var(--container-lg); }
.max-w-md { max-width: var(--container-md); }
.flex-1 { flex: 1; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.-translate-x-1 { translate: calc(var(--spacing) * -1) var(--tw-translate-y); }
.-translate-x-1\/2 { translate: -50% var(--tw-translate-y); }
.translate-x-1 { translate: calc(var(--spacing) * 1) var(--tw-translate-y); }
.-translate-y-1 { translate: var(--tw-translate-x) calc(var(--spacing) * -1); }
.-translate-y-1\/2 { translate: var(--tw-translate-x) -50%; }
.translate-y-1 { translate: var(--tw-translate-x) calc(var(--spacing) * 1); }
.rotate-90 { rotate: 90deg; }
.rotate-\[-5deg\] { rotate: -5deg; }
.rotate-\[-7deg\] { rotate: -7deg; }
.rotate-\[3deg\] { rotate: 3deg; }
.rotate-\[8deg\] { rotate: 8deg; }
.transform { transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, ); }
.animate-pulse { animation: var(--animate-pulse); }
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }
.resize-none { resize: none; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: calc(var(--spacing) * 1); }
.gap-1\.5 { gap: calc(var(--spacing) * 1.5); }
.gap-2 { gap: calc(var(--spacing) * 2); }
.gap-3 { gap: calc(var(--spacing) * 3); }
.gap-4 { gap: calc(var(--spacing) * 4); }
.gap-6 { gap: calc(var(--spacing) * 6); }
.gap-8 { gap: calc(var(--spacing) * 8); }
.gap-12 { gap: calc(var(--spacing) * 12); }
:where(.space-y-2 > :not(:last-child)) { margin-bottom: calc(var(--spacing) * 2); }
:where(.space-y-3 > :not(:last-child)) { margin-bottom: calc(var(--spacing) * 3); }
:where(.space-y-4 > :not(:last-child)) { margin-bottom: calc(var(--spacing) * 4); }
:where(.space-y-6 > :not(:last-child)) { margin-bottom: calc(var(--spacing) * 6); }
:where(.space-y-24 > :not(:last-child)) { margin-bottom: calc(var(--spacing) * 24); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.rounded { border-radius: .25rem; }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-\[1\.2rem\] { border-radius: 1.2rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-t-2xl { border-top-left-radius: var(--radius-2xl); border-top-right-radius: var(--radius-2xl); }
.rounded-r-full { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }
.rounded-r-xl { border-top-right-radius: calc(var(--radius) + 4px); border-bottom-right-radius: calc(var(--radius) + 4px); }
.rounded-b-lg { border-bottom-right-radius: var(--radius); border-bottom-left-radius: var(--radius); }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-r-2 { border-right-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-b-4 { border-bottom-width: 4px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }
.border-dashed { border-style: dashed; }
.border-accent\/30 { border-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.border-border { border-color: var(--border); }
.border-border\/50 { border-color: color-mix(in srgb, var(--border) 50%, transparent); }
.border-cyan-200 { border-color: var(--color-cyan-200); }
.border-cyan-400 { border-color: var(--color-cyan-400); }
.border-gray-200 { border-color: var(--color-gray-200); }
.border-gray-300 { border-color: var(--color-gray-300); }
.border-green-400 { border-color: var(--color-green-400); }
.border-foreground { border-color: var(--muted-foreground); }
.border-primary { border-color: var(--primary); }
.border-primary\/30 { border-color: color-mix(in srgb, var(--primary) 30%, transparent); }
.border-primary\/40 { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.border-red-400 { border-color: var(--color-red-400); }
.border-red-500\/30 { border-color: #fb2c364d; }
.border-red-500\/40 { border-color: #fb2c3666; }
.border-transparent { border-color: #0000; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-accent { background-color: var(--accent); }
.bg-accent\/10 { background-color: color-mix(in srgb, var(--accent) 10%, transparent); }
.bg-accent\/20 { background-color: color-mix(in srgb, var(--accent) 20%, transparent); }
.bg-background { background-color: var(--background); }
.bg-background\/30 { background-color: color-mix(in srgb, var(--background) 30%, transparent); }
.bg-background\/60 { background-color: color-mix(in srgb, var(--background) 60%, transparent); }
.bg-background\/80 { background-color: color-mix(in srgb, var(--background) 80%, transparent); }
.bg-card { background-color: var(--card); }
.bg-cyan-50 { background-color: var(--color-cyan-50); }
.bg-cyan-100 { background-color: var(--color-cyan-100); }
.bg-cyan-400 { background-color: var(--color-cyan-400); }
.bg-cyan-600 { background-color: var(--color-cyan-600); }
.bg-destructive { background-color: var(--destructive); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-gray-800 { background-color: var(--color-gray-800); }
.bg-green-400 { background-color: var(--color-green-400); }
.bg-green-400\/20 { background-color: #05df7233; }
.bg-muted { background-color: var(--muted); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: color-mix(in srgb, var(--primary) 10%, transparent); }
.bg-primary\/20 { background-color: color-mix(in srgb, var(--primary) 20%, transparent); }
.bg-red-50 { background-color: var(--color-red-50); }
.bg-red-100 { background-color: var(--color-red-100); }
.bg-red-400 { background-color: var(--color-red-400); }
.bg-red-400\/20 { background-color: #ff656833; }
.bg-red-500\/10 { background-color: #fb2c361a; }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary\/50 { background-color: color-mix(in srgb, var(--secondary) 50%, transparent); }
.bg-transparent { background-color: #0000; }
.bg-white { background-color: var(--color-white); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-\[\#1a1a1a\] { --tw-gradient-from: #1a1a1a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-accent\/10 { --tw-gradient-from: color-mix(in srgb, var(--accent) 10%, transparent); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-primary { --tw-gradient-from: var(--primary); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-transparent { --tw-gradient-via: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to); }
.to-accent { --tw-gradient-to: var(--accent); }
.to-primary\/10 { --tw-gradient-to: color-mix(in srgb, var(--primary) 10%, transparent); }
.to-transparent { --tw-gradient-to: transparent; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.p-1\.5 { padding: calc(var(--spacing) * 1.5); }
.p-2 { padding: calc(var(--spacing) * 2); }
.p-3 { padding: calc(var(--spacing) * 3); }
.p-4 { padding: calc(var(--spacing) * 4); }
.p-6 { padding: calc(var(--spacing) * 6); }
.p-8 { padding: calc(var(--spacing) * 8); }
.px-1\.5 { padding-inline: calc(var(--spacing) * 1.5); }
.px-2 { padding-inline: calc(var(--spacing) * 2); }
.px-2\.5 { padding-inline: calc(var(--spacing) * 2.5); }
.px-3 { padding-inline: calc(var(--spacing) * 3); }
.px-4 { padding-inline: calc(var(--spacing) * 4); }
.px-6 { padding-inline: calc(var(--spacing) * 6); }
.px-8 { padding-inline: calc(var(--spacing) * 8); }
.py-0\.5 { padding-block: calc(var(--spacing) * .5); }
.py-1 { padding-block: calc(var(--spacing) * 1); }
.py-1\.5 { padding-block: calc(var(--spacing) * 1.5); }
.py-2 { padding-block: calc(var(--spacing) * 2); }
.py-3 { padding-block: calc(var(--spacing) * 3); }
.py-4 { padding-block: calc(var(--spacing) * 4); }
.py-6 { padding-block: calc(var(--spacing) * 6); }
.py-8 { padding-block: calc(var(--spacing) * 8); }
.py-12 { padding-block: calc(var(--spacing) * 12); }
.py-16 { padding-block: calc(var(--spacing) * 16); }
.py-20 { padding-block: calc(var(--spacing) * 20); }
.py-24 { padding-block: calc(var(--spacing) * 24); }
.pt-8 { padding-top: calc(var(--spacing) * 8); }
.pt-16 { padding-top: calc(var(--spacing) * 16); }
.text-center { text-align: center; }
.text-left { text-align: left; }
/*.font-sans { font-family: CommonFont, sans-serif; }*/
.text-2xl { font-size: var(--text-2xl); line-height: var(--text-2xl--line-height); }
.text-3xl { font-size: var(--text-3xl); line-height: var(--text-3xl--line-height); }
.text-4xl { font-size: var(--text-4xl); line-height: var(--text-4xl--line-height); }
.text-lg { font-size: var(--text-lg); line-height: var(--text-lg--line-height); }
.text-md { font-size: var(--text-base); line-height: var(--text-md--line-height); }
.text-sm { font-size: var(--text-sm); line-height: var(--text-sm--line-height); }
.text-xl { font-size: var(--text-xl); line-height: var(--text-xl--line-height); }
.text-xs { font-size: var(--text-xs); line-height: var(--text-xs--line-height); }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-tight { line-height: var(--leading-tight); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.text-pretty { text-wrap: pretty; }
.whitespace-nowrap { white-space: nowrap; }
.text-accent { color: var(--accent); }
.text-accent\/50 { color: color-mix(in srgb, var(--accent) 50%, transparent); }
.text-black { color: var(--color-black); }
.text-cyan-600 { color: var(--color-cyan-600); }
.text-foreground { color: var(--foreground); }
.text-foreground\/80 { color: color-mix(in srgb, var(--foreground) 80%, transparent); }
.text-gray-400 { color: var(--color-gray-400); }
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-600 { color: var(--color-gray-600); }
.text-gray-700 { color: var(--color-gray-700); }
.text-gray-900 { color: var(--color-gray-900); }
.text-green-400 { color: var(--color-green-400); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-muted-foreground\/50 { color: color-mix(in srgb, var(--muted-foreground) 50%, transparent); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-red-400 { color: var(--color-red-400); }
.text-red-500 { color: var(--color-red-500); }
.text-red-500\/40 { color: #fb2c3666; }
.text-red-500\/50 { color: #fb2c3680; }
.text-red-500\/60 { color: #fb2c3699; }
.text-red-600 { color: var(--color-red-600); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-white { color: var(--color-white); }
.uppercase { text-transform: uppercase; }
.underline-offset-4 { text-underline-offset: 4px; }
/*.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }*/
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: .3; }
.opacity-60 { opacity: .6; }
.opacity-70 { opacity: .7; }
.opacity-100 { opacity: 1; }
.shadow-2xl { box-shadow: 0 25px 50px -12px var(--tw-shadow-color, #00000040); }
.shadow-lg { box-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a); }
.shadow-md { box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a); }
.shadow-xs { box-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d); }
.shadow-accent\/30 { --tw-shadow-color: color-mix(in srgb, var(--accent) 30%, transparent); }
.shadow-primary\/10 { --tw-shadow-color: color-mix(in srgb, var(--primary) 10%, transparent); }
.shadow-primary\/20 { --tw-shadow-color: color-mix(in srgb, var(--primary) 20%, transparent); }
.outline { outline-style: solid; outline-width: 1px; }
.blur-3xl { filter: blur(var(--blur-3xl)); }
.brightness-0 { filter: brightness(0%); }
.grayscale { filter: grayscale(100%); }
.backdrop-blur-md { backdrop-filter: blur(var(--blur-md)); }
.backdrop-blur-sm { backdrop-filter: blur(var(--blur-sm)); }
.transition-all { transition-property: all; transition-timing-function: var(--default-transition-timing-function); transition-duration: var(--default-transition-duration); }
.transition-colors { transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke; transition-timing-function: var(--default-transition-timing-function); transition-duration: var(--default-transition-duration); }
.transition-opacity { transition-property: opacity; transition-timing-function: var(--default-transition-timing-function); transition-duration: var(--default-transition-duration); }
.transition-transform { transition-property: transform, translate, scale, rotate; transition-timing-function: var(--default-transition-timing-function); transition-duration: var(--default-transition-duration); }
.duration-200 { transition-duration: .2s; }
.duration-300 { transition-duration: .3s; }
.duration-700 { transition-duration: .7s; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.select-none { user-select: none; }

/* Hover & Focus States */
@media (hover: hover) {
  .group:hover .group-hover\:border-accent\/50 { border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
  .group:hover .group-hover\:bg-accent\/20 { background-color: color-mix(in srgb, var(--accent) 20%, transparent); }
  .group:hover .group-hover\:opacity-100 { opacity: 1; }
  .group:hover .group-hover\:shadow-\[0_0_20px_rgba\(102\,252\,241\,0\.3\)\] { box-shadow: 0 0 20px #66fcf14d; }
  .hover\:scale-110:hover { scale: 1.1; }
  .hover\:border-accent:hover { border-color: var(--accent); }
  .hover\:border-accent\/50:hover { border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
  .hover\:bg-accent:hover { background-color: var(--accent); }
  .hover\:bg-accent\/10:hover { background-color: color-mix(in srgb, var(--accent) 10%, transparent); }
  .hover\:bg-destructive\/90:hover { background-color: color-mix(in srgb, var(--destructive) 90%, transparent); }
  .hover\:bg-muted:hover { background-color: var(--muted); }
  .hover\:bg-primary:hover { background-color: var(--primary); }
  .hover\:bg-primary\/90:hover { background-color: color-mix(in srgb, var(--primary) 90%, transparent); }
  .hover\:bg-secondary\/80:hover { background-color: color-mix(in srgb, var(--secondary) 80%, transparent); }
  .hover\:text-accent:hover { color: var(--accent); }
  .hover\:text-accent-foreground:hover { color: var(--accent-foreground); }
  .hover\:text-primary-foreground:hover { color: var(--primary-foreground); }
  .hover\:underline:hover { text-decoration-line: underline; }
  .hover\:opacity-100:hover { opacity: 1; }
  .hover\:shadow-\[0_0_30px_rgba\(102\,252\,241\,0\.15\)\]:hover { box-shadow: 0 0 30px #66fcf126; }
  .hover\:shadow-accent\/20:hover { --tw-shadow-color: color-mix(in srgb, var(--accent) 20%, transparent); }
  .hover\:grayscale-0:hover { filter: grayscale(0%); }
}

.placeholder\:text-muted-foreground::placeholder { color: var(--muted-foreground); }
.focus\:border-primary:focus { border-color: var(--primary); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--primary); }
.focus\:ring-primary\/50:focus { --tw-ring-color: color-mix(in srgb, var(--primary) 50%, transparent); }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:border-ring:focus-visible { border-color: var(--ring); }
.focus-visible\:ring-\[3px\]:focus-visible { box-shadow: 0 0 0 3px var(--ring); }
.focus-visible\:ring-destructive\/20:focus-visible { --tw-ring-color: color-mix(in srgb, var(--destructive) 20%, transparent); }
.focus-visible\:ring-ring\/50:focus-visible { --tw-ring-color: color-mix(in srgb, var(--ring) 50%, transparent); }
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: .5; }
.has-\[\>svg\]\:px-2\.5:has(> svg) { padding-inline: calc(var(--spacing) * 2.5); }
.has-\[\>svg\]\:px-3:has(> svg) { padding-inline: calc(var(--spacing) * 3); }
.has-\[\>svg\]\:px-4:has(> svg) { padding-inline: calc(var(--spacing) * 4); }
.aria-invalid\:border-destructive[aria-invalid="true"] { border-color: var(--destructive); }
.aria-invalid\:ring-destructive\/20[aria-invalid="true"] { --tw-ring-color: color-mix(in srgb, var(--destructive) 20%, transparent); }

/* Responsive Utilities */
@media (min-width: 40rem) {
  .sm\:h-6 { height: calc(var(--spacing) * 6); }
  .sm\:h-16 { height: calc(var(--spacing) * 16); }
  .sm\:h-24 { height: calc(var(--spacing) * 24); }
  .sm\:h-56 { height: calc(var(--spacing) * 56); }
  .sm\:h-64 { height: calc(var(--spacing) * 64); }
  .sm\:w-6 { width: calc(var(--spacing) * 6); }
  .sm\:w-16 { width: calc(var(--spacing) * 16); }
  .sm\:w-24 { width: calc(var(--spacing) * 24); }
  .sm\:w-64 { width: calc(var(--spacing) * 64); }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:p-3 { padding: calc(var(--spacing) * 3); }
  .sm\:px-6 { padding-inline: calc(var(--spacing) * 6); }
  .sm\:text-3xl { font-size: var(--text-3xl); line-height: var(--text-3xl--line-height); }
  .sm\:text-4xl { font-size: var(--text-4xl); line-height: var(--text-4xl--line-height); }
  .sm\:text-5xl { font-size: var(--text-5xl); line-height: var(--text-5xl--line-height); }
  .sm\:text-base { font-size: var(--text-base); line-height: var(--text-base--line-height); }
  .sm\:text-xl { font-size: var(--text-xl); line-height: var(--text-xl--line-height); }
  .sm\:text-xs { font-size: var(--text-xs); line-height: var(--text-xs--line-height); }
}

@media (min-width: 48rem) {
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:mx-8 { margin-inline: calc(var(--spacing) * 8); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:h-20 { height: calc(var(--spacing) * 20); }
  .md\:w-40 { width: calc(var(--spacing) * 40); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-3xl { font-size: var(--text-3xl); line-height: var(--text-3xl--line-height); }
  .md\:text-5xl { font-size: var(--text-5xl); line-height: var(--text-5xl--line-height); }
}

@media (min-width: 64rem) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:mx-0 { margin-inline: 0; }
  .lg\:mx-auto { margin-inline: auto; }
  .lg\:max-w-\[calc\(66\.666\%\+0\.75rem\)\] { max-width: calc(66.666% + .75rem); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:flex-row-reverse { flex-direction: row-reverse; }
  .lg\:justify-start { justify-content: flex-start; }
  .lg\:gap-12 { gap: calc(var(--spacing) * 12); }
  .lg\:gap-16 { gap: calc(var(--spacing) * 16); }
  .lg\:px-8 { padding-inline: calc(var(--spacing) * 8); }
  .lg\:text-left { text-align: left; }
  .lg\:text-3xl { font-size: var(--text-3xl); line-height: var(--text-3xl--line-height); }
  .lg\:text-6xl { font-size: var(--text-6xl); line-height: var(--text-6xl--line-height); }
}

/* Animation Properties (Keep at bottom) */
@property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
@property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
@property --tw-animation-duration { syntax: "*"; inherits: false; }
@property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: forwards; }
@property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-gradient-position { syntax: "*"; inherits: false; }
@property --tw-gradient-from { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-via { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-to { syntax: "<color>"; inherits: false; initial-value: #0000; }
@property --tw-gradient-stops { syntax: "*"; inherits: false; }
@property --tw-gradient-via-stops { syntax: "*"; inherits: false; }
@property --tw-gradient-from-position { syntax: "<length-percentage>"; inherits: false; initial-value: 0%; }
@property --tw-gradient-via-position { syntax: "<length-percentage>"; inherits: false; initial-value: 50%; }
@property --tw-gradient-to-position { syntax: "<length-percentage>"; inherits: false; initial-value: 100%; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-tracking { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-backdrop-blur { syntax: "*"; inherits: false; }
@property --tw-backdrop-brightness { syntax: "*"; inherits: false; }
@property --tw-backdrop-contrast { syntax: "*"; inherits: false; }
@property --tw-backdrop-grayscale { syntax: "*"; inherits: false; }
@property --tw-backdrop-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-backdrop-invert { syntax: "*"; inherits: false; }
@property --tw-backdrop-opacity { syntax: "*"; inherits: false; }
@property --tw-backdrop-saturate { syntax: "*"; inherits: false; }
@property --tw-backdrop-sepia { syntax: "*"; inherits: false; }
@property --tw-duration { syntax: "*"; inherits: false; }
@property --tw-scale-x { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-y { syntax: "*"; inherits: false; initial-value: 1; }
@property --tw-scale-z { syntax: "*"; inherits: false; initial-value: 1; }
@keyframes pulse { 50% { opacity: .5; } }