/* ============================================================
   CUBIGO UTILITY-FIRST CSS FRAMEWORK
   A complete Tailwind CSS-compatible utility framework
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --background: 240 15% 97%;
  --foreground: 240 43% 14%;
  --card: 0 0% 100%;
  --card-foreground: 240 43% 14%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 43% 14%;
  --primary: 255 100% 62%;
  --primary-foreground: 0 0% 100%;
  --secondary: 180 87% 68%;
  --secondary-foreground: 240 43% 14%;
  --muted: 240 5% 92%;
  --muted-foreground: 240 10% 45%;
  --accent: 180 87% 68%;
  --accent-foreground: 240 43% 14%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 240 10% 90%;
  --input: 240 10% 90%;
  --ring: 255 100% 62%;
  --radius: 1rem;

  --cubigo-indigo: 255 100% 62%;
  --cubigo-mint: 180 87% 68%;
  --cubigo-dark-mint: 180 72% 48%;
  --cubigo-black: 240 43% 14%;
  --cubigo-sand: 32 82% 87%;
  --cubigo-dark-sand: 32 64% 72%;
  --cubigo-gray-10: 240 7% 98%;
  --cubigo-gray-20: 240 5% 97%;
  --cubigo-gray-30: 240 4% 93%;
  --cubigo-gray-40: 240 4% 86%;

  --gradient-hero: linear-gradient(135deg, hsl(255 100% 62%) 0%, hsl(255 80% 55%) 100%);
  --gradient-mint: linear-gradient(135deg, hsl(180 87% 68%) 0%, hsl(180 72% 48%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(240 15% 97%) 0%, hsl(240 5% 97%) 100%);

  --shadow-sm: 0 2px 8px -2px hsl(240 43% 14% / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(240 43% 14% / 0.12);
  --shadow-lg: 0 16px 48px -12px hsl(240 43% 14% / 0.16);
  --shadow-glow: 0 0 40px hsl(255 100% 62% / 0.25);
  --shadow-mint-glow: 0 0 30px hsl(180 87% 68% / 0.4);
}

/* === BASE RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg, video, canvas { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
/* === DISPLAY === */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* === FLEX === */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }

/* === GAP === */
.gap-0 { gap: 0; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-11 { gap: 2.75rem; }
.gap-12 { gap: 3rem; }

/* === GRID === */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-full { grid-column: 1 / -1; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* === SPACING: MARGIN === */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }
.m-auto { margin: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-auto { margin-bottom: auto; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-auto { margin-right: auto; }

.-ml-1 { margin-left: -0.25rem; }
.-ml-2 { margin-left: -0.5rem; }
.-ml-6 { margin-left: -1.5rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-mt-3 { margin-top: -0.75rem; }
.-mt-4 { margin-top: -1rem; }
.-mt-6 { margin-top: -1.5rem; }
.-mb-1 { margin-bottom: -0.25rem; }
.-mb-2 { margin-bottom: -0.5rem; }
.-mr-2 { margin-right: -0.5rem; }
.-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; }
.-mx-6 { margin-left: -1.5rem; margin-right: -1.5rem; }
/* === SPACING: PADDING === */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-auto { padding-top: auto; padding-bottom: auto; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pt-36 { padding-top: 9rem; }
.pt-40 { padding-top: 10rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

.pl-0 { padding-left: 0; }
.pl-4 { padding-left: 1rem; }

.pr-0 { padding-right: 0; }
.pr-4 { padding-right: 1rem; }

/* === SPACING: SPACE-Y === */
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

/* === SIZING: WIDTH === */
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-px { width: 1px; }
.w-\[300px\] { width: 300px; }
.w-\[400px\] { width: 400px; }
.w-\[600px\] { width: 600px; }
.w-\[800px\] { width: 800px; }

.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.min-w-\[280px\] { min-width: 280px; }

.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-prose { max-width: 65ch; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }

/* === SIZING: HEIGHT === */
.h-0 { height: 0; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-px { height: 1px; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-\[300px\] { height: 300px; }
.h-\[400px\] { height: 400px; }
.h-\[600px\] { height: 600px; }
.h-\[800px\] { height: 800px; }
.h-1\/2 { height: 50%; }
.h-3\/4 { height: 75%; }
.min-h-\[40px\] { min-height: 40px; }
.min-h-screen { min-height: 100vh; }
.min-h-full { min-height: 100%; }
.max-h-full { max-height: 100%; }

/* === ASPECT RATIO === */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-auto { aspect-ratio: auto; }
.object-cover { object-fit: cover; }
/* === TYPOGRAPHY: FONT SIZE === */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

/* === TYPOGRAPHY: FONT WEIGHT === */
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* === TYPOGRAPHY: LINE HEIGHT === */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-\[1\.1\] { line-height: 1.1; }

/* === TYPOGRAPHY: LETTER SPACING === */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* === TYPOGRAPHY: TEXT ALIGN === */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* === TYPOGRAPHY: TEXT TRANSFORM === */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* === TYPOGRAPHY: TEXT DECORATION === */
.underline { text-decoration-line: underline; }
.overline { text-decoration-line: overline; }
.line-through { text-decoration-line: line-through; }
.no-underline { text-decoration-line: none; }

/* === TYPOGRAPHY: TEXT WRAP === */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* === LINE CLAMP === */
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-none { display: block; -webkit-box-orient: unset; overflow: visible; -webkit-line-clamp: unset; }
/* === COLORS: TEXT === */
.text-inherit { color: inherit; }
.text-current { color: currentColor; }
.text-transparent { color: transparent; }
.text-white { color: #fff; }
.text-black { color: #000; }

.text-foreground { color: hsl(var(--foreground)); }
.text-background { color: hsl(var(--background)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted { color: hsl(var(--muted)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-destructive { color: hsl(var(--destructive)); }
.text-destructive-foreground { color: hsl(var(--destructive-foreground)); }
.text-card { color: hsl(var(--card)); }
.text-card-foreground { color: hsl(var(--card-foreground)); }
.text-border { color: hsl(var(--border)); }
.text-input { color: hsl(var(--input)); }
.text-ring { color: hsl(var(--ring)); }

.text-cubigo-indigo { color: hsl(var(--cubigo-indigo)); }
.text-cubigo-mint { color: hsl(var(--cubigo-mint)); }
.text-cubigo-dark-mint { color: hsl(var(--cubigo-dark-mint)); }
.text-cubigo-black { color: hsl(var(--cubigo-black)); }
.text-cubigo-sand { color: hsl(var(--cubigo-sand)); }
.text-cubigo-dark-sand { color: hsl(var(--cubigo-dark-sand)); }
.text-cubigo-gray-10 { color: hsl(var(--cubigo-gray-10)); }
.text-cubigo-gray-20 { color: hsl(var(--cubigo-gray-20)); }
.text-cubigo-gray-30 { color: hsl(var(--cubigo-gray-30)); }
.text-cubigo-gray-40 { color: hsl(var(--cubigo-gray-40)); }

/* Text colors with opacity */
.text-primary\/5 { color: hsl(255 100% 62% / 0.05); }
.text-primary\/10 { color: hsl(255 100% 62% / 0.1); }
.text-primary\/20 { color: hsl(255 100% 62% / 0.2); }
.text-primary\/30 { color: hsl(255 100% 62% / 0.3); }
.text-primary\/50 { color: hsl(255 100% 62% / 0.5); }
.text-primary\/70 { color: hsl(255 100% 62% / 0.7); }
.text-primary\/90 { color: hsl(255 100% 62% / 0.9); }
.text-primary-foreground\/10 { color: hsl(0 0% 100% / 0.1); }
.text-primary-foreground\/20 { color: hsl(0 0% 100% / 0.2); }
.text-primary-foreground\/50 { color: hsl(0 0% 100% / 0.5); }
.text-primary-foreground\/90 { color: hsl(0 0% 100% / 0.9); }
.text-muted\/30 { color: hsl(240 5% 92% / 0.3); }
.text-muted\/50 { color: hsl(240 5% 92% / 0.5); }
.text-foreground\/50 { color: hsl(240 43% 14% / 0.5); }
.text-foreground\/80 { color: hsl(240 43% 14% / 0.8); }
/* === COLORS: BACKGROUND === */
.bg-inherit { background-color: inherit; }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #fff; }
.bg-black { background-color: #000; }

.accent-primary { accent-color: hsl(var(--primary)); }

.bg-background { background-color: hsl(var(--background)); }
.bg-foreground { background-color: hsl(var(--foreground)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary-foreground { background-color: hsl(var(--primary-foreground)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-secondary-foreground { background-color: hsl(var(--secondary-foreground)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-accent-foreground { background-color: hsl(var(--accent-foreground)); }
.bg-destructive { background-color: hsl(var(--destructive)); }
.bg-border { background-color: hsl(var(--border)); }

.bg-cubigo-indigo { background-color: hsl(var(--cubigo-indigo)); }
.bg-cubigo-mint { background-color: hsl(var(--cubigo-mint)); }
.bg-cubigo-dark-mint { background-color: hsl(var(--cubigo-dark-mint)); }
.bg-cubigo-black { background-color: hsl(var(--cubigo-black)); }
.bg-cubigo-sand { background-color: hsl(var(--cubigo-sand)); }
.bg-cubigo-dark-sand { background-color: hsl(var(--cubigo-dark-sand)); }
.bg-cubigo-gray-10 { background-color: hsl(var(--cubigo-gray-10)); }
.bg-cubigo-gray-20 { background-color: hsl(var(--cubigo-gray-20)); }
.bg-cubigo-gray-30 { background-color: hsl(var(--cubigo-gray-30)); }
.bg-cubigo-gray-40 { background-color: hsl(var(--cubigo-gray-40)); }

/* Background colors with opacity */
.bg-background\/50 { background-color: hsl(240 15% 97% / 0.5); }
.bg-background\/70 { background-color: hsl(240 15% 97% / 0.7); }
.bg-background\/80 { background-color: hsl(240 15% 97% / 0.8); }
.bg-background\/90 { background-color: hsl(240 15% 97% / 0.9); }
.bg-background\/95 { background-color: hsl(240 15% 97% / 0.95); }
.bg-card\/80 { background-color: hsl(0 0% 100% / 0.8); }
.bg-card\/90 { background-color: hsl(0 0% 100% / 0.9); }
.bg-card\/95 { background-color: hsl(0 0% 100% / 0.95); }
.bg-primary\/5 { background-color: hsl(255 100% 62% / 0.05); }
.bg-primary\/10 { background-color: hsl(255 100% 62% / 0.1); }
.bg-primary\/20 { background-color: hsl(255 100% 62% / 0.2); }
.bg-primary\/30 { background-color: hsl(255 100% 62% / 0.3); }
.bg-primary\/50 { background-color: hsl(255 100% 62% / 0.5); }
.bg-primary\/80 { background-color: hsl(255 100% 62% / 0.8); }
.bg-primary\/90 { background-color: hsl(255 100% 62% / 0.9); }
.bg-primary-foreground\/10 { background-color: hsl(0 0% 100% / 0.1); }
.bg-primary-foreground\/20 { background-color: hsl(0 0% 100% / 0.2); }
.bg-primary-foreground\/50 { background-color: hsl(0 0% 100% / 0.5); }
.bg-cubigo-mint\/10 { background-color: hsl(180 87% 68% / 0.1); }
.bg-cubigo-mint\/20 { background-color: hsl(180 87% 68% / 0.2); }
.bg-cubigo-mint\/30 { background-color: hsl(180 87% 68% / 0.3); }
.bg-cubigo-mint\/90 { background-color: hsl(180 87% 68% / 0.9); }
.bg-muted\/30 { background-color: hsl(240 5% 92% / 0.3); }
.bg-muted\/50 { background-color: hsl(240 5% 92% / 0.5); }
.bg-accent\/30 { background-color: hsl(180 87% 68% / 0.3); }
.bg-accent\/50 { background-color: hsl(180 87% 68% / 0.5); }
.fill-cubigo-dark-sand { fill: hsl(var(--cubigo-dark-sand)); }
.fill-current { fill: currentColor; }

/* === BACKGROUND POSITION/SIZE === */
.bg-center { background-position: center; }
.bg-cover { background-size: cover; }
.bg-no-repeat { background-repeat: no-repeat; }

/* === BORDERS === */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-8 { border-width: 8px; border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }
.border-double { border-style: double; }
.border-none { border-style: none; }

.border-border { border-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary-foreground { border-color: hsl(var(--primary-foreground)); }
.border-secondary { border-color: hsl(var(--secondary)); }
.border-secondary-foreground { border-color: hsl(var(--secondary-foreground)); }
.border-muted { border-color: hsl(var(--muted)); }
.border-accent { border-color: hsl(var(--accent)); }
.border-accent-foreground { border-color: hsl(var(--accent-foreground)); }
.border-destructive { border-color: hsl(var(--destructive)); }
.border-foreground { border-color: hsl(var(--foreground)); }
.border-background { border-color: hsl(var(--background)); }
.border-white { border-color: #fff; }
.border-black { border-color: #000; }
.border-input { border-color: hsl(var(--input)); }

.border-cubigo-indigo { border-color: hsl(var(--cubigo-indigo)); }
.border-cubigo-mint { border-color: hsl(var(--cubigo-mint)); }
.border-cubigo-dark-mint { border-color: hsl(var(--cubigo-dark-mint)); }
.border-cubigo-black { border-color: hsl(var(--cubigo-black)); }
.border-cubigo-sand { border-color: hsl(var(--cubigo-sand)); }
.border-cubigo-dark-sand { border-color: hsl(var(--cubigo-dark-sand)); }
.border-cubigo-gray-10 { border-color: hsl(var(--cubigo-gray-10)); }
.border-cubigo-gray-20 { border-color: hsl(var(--cubigo-gray-20)); }
.border-cubigo-gray-30 { border-color: hsl(var(--cubigo-gray-30)); }
.border-cubigo-gray-40 { border-color: hsl(var(--cubigo-gray-40)); }

/* Border colors with opacity */
.border-border\/50 { border-color: hsl(240 10% 90% / 0.5); }
.border-primary\/10 { border-color: hsl(255 100% 62% / 0.1); }
.border-primary\/20 { border-color: hsl(255 100% 62% / 0.2); }
.border-primary\/30 { border-color: hsl(255 100% 62% / 0.3); }
.border-primary\/50 { border-color: hsl(255 100% 62% / 0.5); }
.border-primary-foreground\/30 { border-color: hsl(0 0% 100% / 0.3); }
.border-primary-foreground\/50 { border-color: hsl(0 0% 100% / 0.5); }
.border-cubigo-mint\/10 { border-color: hsl(180 87% 68% / 0.1); }
.border-cubigo-mint\/20 { border-color: hsl(180 87% 68% / 0.2); }
.border-cubigo-mint\/30 { border-color: hsl(180 87% 68% / 0.3); }
.border-cubigo-gray-40\/20 { border-color: hsl(240 4% 86% / 0.2); }
.border-cubigo-gray-40\/50 { border-color: hsl(240 4% 86% / 0.5); }

/* Border sides */
.border-t { border-top-width: 1px; }
.border-t-0 { border-top-width: 0; }
.border-t-2 { border-top-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-b-0 { border-bottom-width: 0; }
.border-b-2 { border-bottom-width: 2px; }
.border-l { border-left-width: 1px; }
.border-l-2 { border-left-width: 2px; }
.border-r { border-right-width: 1px; }
.border-r-2 { border-right-width: 2px; }
.border-x { border-left-width: 1px; border-right-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-x-2 { border-left-width: 2px; border-right-width: 2px; }
.border-y-2 { border-top-width: 2px; border-bottom-width: 2px; }
/* === BORDER RADIUS === */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-3xl { border-radius: calc(var(--radius) + 16px); }
.rounded-full { border-radius: 9999px; }

.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-t-sm { border-top-left-radius: calc(var(--radius) - 4px); border-top-right-radius: calc(var(--radius) - 4px); }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-t-md { border-top-left-radius: calc(var(--radius) - 2px); border-top-right-radius: calc(var(--radius) - 2px); }
.rounded-t-lg { border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); }
.rounded-t-xl { border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); }
.rounded-t-2xl { border-top-left-radius: calc(var(--radius) + 8px); border-top-right-radius: calc(var(--radius) + 8px); }

.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.rounded-b-sm { border-bottom-left-radius: calc(var(--radius) - 4px); border-bottom-right-radius: calc(var(--radius) - 4px); }
.rounded-b { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-b-md { border-bottom-left-radius: calc(var(--radius) - 2px); border-bottom-right-radius: calc(var(--radius) - 2px); }
.rounded-b-lg { border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius); }
.rounded-b-xl { border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius); }
.rounded-b-2xl { border-bottom-left-radius: calc(var(--radius) + 8px); border-bottom-right-radius: calc(var(--radius) + 8px); }

.rounded-tl-none { border-top-left-radius: 0; }
.rounded-tr-none { border-top-right-radius: 0; }
.rounded-bl-none { border-bottom-left-radius: 0; }
.rounded-br-none { border-bottom-right-radius: 0; }
.rounded-tl-full { border-top-left-radius: 9999px; }
.rounded-tr-full { border-top-right-radius: 9999px; }
.rounded-bl-full { border-bottom-left-radius: 9999px; }
.rounded-br-full { border-bottom-right-radius: 9999px; }
.rounded-tl-lg { border-top-left-radius: var(--radius); }
.rounded-tr-lg { border-top-right-radius: var(--radius); }
.rounded-bl-lg { border-bottom-left-radius: var(--radius); }
.rounded-br-lg { border-bottom-right-radius: var(--radius); }
.rounded-tl-xl { border-top-left-radius: var(--radius); }
.rounded-tr-xl { border-top-right-radius: var(--radius); }
.rounded-bl-xl { border-bottom-left-radius: var(--radius); }
.rounded-br-xl { border-bottom-right-radius: var(--radius); }
.rounded-tl-2xl { border-top-left-radius: calc(var(--radius) + 8px); }
.rounded-tr-2xl { border-top-right-radius: calc(var(--radius) + 8px); }
.rounded-bl-2xl { border-bottom-left-radius: calc(var(--radius) + 8px); }
.rounded-br-2xl { border-bottom-right-radius: calc(var(--radius) + 8px); }
/* === SHADOWS === */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-mint-glow { box-shadow: var(--shadow-mint-glow); }

/* === OPACITY === */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-15 { opacity: 0.15; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-35 { opacity: 0.35; }
.opacity-40 { opacity: 0.4; }
.opacity-45 { opacity: 0.45; }
.opacity-50 { opacity: 0.5; }
.opacity-55 { opacity: 0.55; }
.opacity-60 { opacity: 0.6; }
.opacity-65 { opacity: 0.65; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }
/* === POSITION === */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-4 { top: 1rem; }
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.top-10 { top: 2.5rem; }
.top-12 { top: 3rem; }
.top-16 { top: 4rem; }
.top-20 { top: 5rem; }
.top-32 { top: 8rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.right-8 { right: 2rem; }
.bottom-4 { bottom: 1rem; }
.bottom-2 { bottom: 0.5rem; }
.bottom-6 { bottom: 1.5rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.left-8 { left: 2rem; }
.left-1\/2 { left: 50%; }
.left-\[60\%\] { left: 60%; }
.top-1\/2 { top: 50%; }
.-top-3 { top: -0.75rem; }
.-top-4 { top: -1rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-right-4 { right: -1rem; }
.-right-8 { right: -2rem; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.z-auto { z-index: auto; }
/* === OVERFLOW === */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-hidden { overflow-y: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-y-scroll { overflow-y: scroll; }
.overflow-x-scroll { overflow-x: scroll; }
/* === TRANSITIONS === */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-width { transition-property: width; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
/* === TRANSFORMS === */
.scale-50 { transform: scale(0.5); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }
.scale-\[1\.02\] { transform: scale(1.02); }
.scale-x-100 { transform: scaleX(1); }
.scale-y-100 { transform: scaleY(1); }

.rotate-0 { transform: rotate(0deg); }
.rotate-1 { transform: rotate(1deg); }
.rotate-2 { transform: rotate(2deg); }
.rotate-3 { transform: rotate(3deg); }
.rotate-6 { transform: rotate(6deg); }
.rotate-12 { transform: rotate(12deg); }
.rotate-45 { transform: rotate(45deg); }
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-1 { transform: rotate(-1deg); }
.-rotate-2 { transform: rotate(-2deg); }
.-rotate-3 { transform: rotate(-3deg); }
.-rotate-12 { transform: rotate(-12deg); }
.-rotate-90 { transform: rotate(-90deg); }

.translate-x-0 { transform: translateX(0); }
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-full { transform: translateX(100%); }
.-translate-x-full { transform: translateX(-100%); }

.translate-y-0 { transform: translateY(0); }
.translate-y-1\/2 { transform: translateY(50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-full { transform: translateY(100%); }
.-translate-y-full { transform: translateY(-100%); }

.skew-x-0 { transform: skewX(0deg); }
.skew-y-0 { transform: skewY(0deg); }
/* === CURSOR === */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-wait { cursor: wait; }
.cursor-text { cursor: text; }
.cursor-move { cursor: move; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-grab { cursor: grab; }
.cursor-grabbing { cursor: grabbing; }

/* === USER SELECT === */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* === POINTER EVENTS === */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* === SCREEN READER === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* === APPEARANCE === */
.appearance-none { appearance: none; }
.appearance-auto { appearance: auto; }

/* === OUTLINE === */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.outline { outline-style: solid; }
.outline-dashed { outline-style: dashed; }
.outline-dotted { outline-style: dotted; }
.outline-double { outline-style: double; }
.outline-0 { outline-width: 0; }
.outline-1 { outline-width: 1px; }
.outline-2 { outline-width: 2px; }
.outline-4 { outline-width: 4px; }
.outline-8 { outline-width: 8px; }
/* === RING === */
.ring { box-shadow: 0 0 0 3px hsl(var(--ring)); }
.ring-0 { box-shadow: 0 0 0 0px hsl(var(--ring)); }
.ring-1 { box-shadow: 0 0 0 1px hsl(var(--ring)); }
.ring-2 { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.ring-4 { box-shadow: 0 0 0 4px hsl(var(--ring)); }
.ring-8 { box-shadow: 0 0 0 8px hsl(var(--ring)); }
.ring-inset { --ring-inset: inset; }
.ring-ring { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.ring-offset-2 { box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }
.ring-offset-4 { box-shadow: 0 0 0 4px hsl(var(--background)), 0 0 0 6px hsl(var(--ring)); }
.ring-offset-background { box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }

/* === ANTIALIASED === */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* === GRADIENTS === */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }

/* Gradient stops: from */
.from-transparent { --tw-gradient-from: transparent; }
.from-current { --tw-gradient-from: currentColor; }
.from-black { --tw-gradient-from: #000; }
.from-white { --tw-gradient-from: #fff; }
.from-background { --tw-gradient-from: hsl(var(--background)); }
.from-foreground { --tw-gradient-from: hsl(var(--foreground)); }
.from-primary { --tw-gradient-from: hsl(var(--primary)); }
.from-primary-foreground { --tw-gradient-from: hsl(var(--primary-foreground)); }
.from-card { --tw-gradient-from: hsl(var(--card)); }
.from-border { --tw-gradient-from: hsl(var(--border)); }
.from-muted { --tw-gradient-from: hsl(var(--muted)); }
.from-accent { --tw-gradient-from: hsl(var(--accent)); }
.from-cubigo-mint { --tw-gradient-from: hsl(var(--cubigo-mint)); }
.from-cubigo-dark-mint { --tw-gradient-from: hsl(var(--cubigo-dark-mint)); }
.from-cubigo-black { --tw-gradient-from: hsl(var(--cubigo-black)); }

/* Gradient stops: via */
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }
.via-background { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background)), var(--tw-gradient-to); }
.via-background\/95 { --tw-gradient-stops: var(--tw-gradient-from), hsl(240 15% 97% / 0.95), var(--tw-gradient-to); }
.via-background\/80 { --tw-gradient-stops: var(--tw-gradient-from), hsl(240 15% 97% / 0.8), var(--tw-gradient-to); }
.via-border { --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--border)), var(--tw-gradient-to); }
.via-primary\/30 { --tw-gradient-stops: var(--tw-gradient-from), hsl(255 100% 62% / 0.3), var(--tw-gradient-to); }

/* Gradient stops: to */
.to-transparent { --tw-gradient-to: transparent; }
.to-background { --tw-gradient-to: hsl(var(--background)); }
.to-background\/70 { --tw-gradient-to: hsl(240 15% 97% / 0.7); }
.to-background\/50 { --tw-gradient-to: hsl(240 15% 97% / 0.5); }
.to-background\/60 { --tw-gradient-to: hsl(240 15% 97% / 0.6); }
.to-background\/80 { --tw-gradient-to: hsl(240 15% 97% / 0.8); }
.to-background\/90 { --tw-gradient-to: hsl(240 15% 97% / 0.9); }
.to-foreground { --tw-gradient-to: hsl(var(--foreground)); }
.to-primary { --tw-gradient-to: hsl(var(--primary)); }
.to-primary\/5 { --tw-gradient-to: hsl(255 100% 62% / 0.05); }
.to-card { --tw-gradient-to: hsl(var(--card)); }
.to-border { --tw-gradient-to: hsl(var(--border)); }
.to-cubigo-mint { --tw-gradient-to: hsl(var(--cubigo-mint)); }
.to-cubigo-dark-mint { --tw-gradient-to: hsl(var(--cubigo-dark-mint)); }
.to-cubigo-black { --tw-gradient-to: hsl(var(--cubigo-black)); }
/* === CUBIGO CUSTOM UTILITIES === */
.gradient-hero { background: var(--gradient-hero); }
.gradient-mint { background: var(--gradient-mint); }
.gradient-subtle { background: var(--gradient-subtle); }

.text-gradient-hero {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cubigo-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235E3DFF' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* === BACKDROP BLUR === */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }
.backdrop-blur-3xl { backdrop-filter: blur(64px); -webkit-backdrop-filter: blur(64px); }

/* === BLUR === */
.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* === GROUP HOVER === */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-primary { color: hsl(var(--primary)); }
.group:hover .group-hover\:text-primary\/20 { color: hsl(255 100% 62% / 0.2); }
.group:hover .group-hover\:opacity-5 { opacity: 0.05; }
.group:hover .group-hover\:opacity-10 { opacity: 0.1; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:bg-primary\/5 { background-color: hsl(255 100% 62% / 0.05); }

/* === FOCUS STATES === */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px hsl(var(--background)); }

/* === FOCUS VISIBLE === */
.focus-visible\:outline-none:focus-visible { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px hsl(var(--background)); }
.focus-visible\:ring-ring:focus-visible { box-shadow: 0 0 0 2px hsl(var(--ring)); }
.focus-visible\:ring-offset-2:focus-visible { box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }
.focus-visible\:ring-offset-background:focus-visible { box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }

/* === DISABLED STATES === */
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: 0.5; }

/* === HOVER STATES === */
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:bg-primary\/90:hover { background-color: hsl(255 100% 62% / 0.9); }
.hover\:bg-secondary\/80:hover { background-color: hsl(180 87% 68% / 0.8); }
.hover\:bg-accent:hover { background-color: hsl(var(--accent)); }
.hover\:bg-accent\/50:hover { background-color: hsl(180 87% 68% / 0.5); }
.hover\:bg-muted\/50:hover { background-color: hsl(240 5% 92% / 0.5); }
.hover\:bg-destructive\/90:hover { background-color: hsl(0 84% 60% / 0.9); }
.hover\:bg-primary-foreground\/20:hover { background-color: hsl(0 0% 100% / 0.2); }
.hover\:bg-cubigo-dark-mint:hover { background-color: hsl(var(--cubigo-dark-mint)); }
.hover\:bg-cubigo-mint:hover { background-color: hsl(var(--cubigo-mint)); }
.hover\:bg-cubigo-mint\/90:hover { background-color: hsl(180 87% 68% / 0.9); }

.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:text-accent-foreground:hover { color: hsl(var(--accent-foreground)); }
.hover\:text-cubigo-dark-mint:hover { color: hsl(var(--cubigo-dark-mint)); }
.hover\:text-cubigo-mint:hover { color: hsl(var(--cubigo-mint)); }

.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

.hover\:no-underline:hover { text-decoration-line: none; }
.hover\:underline:hover { text-decoration-line: underline; }

.hover\:border-primary:hover { border-color: hsl(var(--primary)); }
.hover\:border-primary\/30:hover { border-color: hsl(255 100% 62% / 0.3); }
/* === ANIMATIONS === */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-left {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slide-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes slide-out {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

@keyframes fade-in-from-bottom {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fade-in 0.6s ease-out forwards; }
.animate-fade-in-left { animation: fade-in-left 0.6s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.5s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-slide-in { animation: slide-in 0.3s ease-out; }
.animate-slide-out { animation: slide-out 0.3s ease-in; }
.animate-fade-in-from-bottom { animation: fade-in-from-bottom 0.3s ease-out; }
.animate-in { animation: fade-in 0.5s ease-out; }
.animate-out { animation: slide-out 0.2s ease-in forwards; }
/* === DATA STATE (for accordion, etc.) === */
[data-state="open"] { }
[data-state="closed"] { }
[data-state="open"] > .accordion-content { display: block; }
[data-state="closed"] > .accordion-content { display: none; }
/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */

/* === SM BREAKPOINT (640px) === */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:inline-block { display: inline-block; }
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:hidden { display: none; }

  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-col { flex-direction: column; }
  .sm\:flex-wrap { flex-wrap: wrap; }

  .sm\:items-start { align-items: flex-start; }
  .sm\:items-center { align-items: center; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:items-stretch { align-items: stretch; }

  .sm\:justify-start { justify-content: flex-start; }
  .sm\:justify-center { justify-content: center; }
  .sm\:justify-end { justify-content: flex-end; }
  .sm\:justify-between { justify-content: space-between; }

  .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .sm\:gap-0 { gap: 0; }
  .sm\:gap-1 { gap: 0.25rem; }
  .sm\:gap-2 { gap: 0.5rem; }
  .sm\:gap-3 { gap: 0.75rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }

  .sm\:p-0 { padding: 0; }
  .sm\:p-2 { padding: 0.5rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-8 { padding: 2rem; }

  .sm\:px-0 { padding-left: 0; padding-right: 0; }
  .sm\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }

  .sm\:py-0 { padding-top: 0; padding-bottom: 0; }
  .sm\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }

  .sm\:m-0 { margin: 0; }
  .sm\:m-2 { margin: 0.5rem; }
  .sm\:m-4 { margin: 1rem; }
  .sm\:m-6 { margin: 1.5rem; }
  .sm\:m-8 { margin: 2rem; }
  .sm\:mx-auto { margin-left: auto; margin-right: auto; }

  .sm\:mx-0 { margin-left: 0; margin-right: 0; }
  .sm\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
  .sm\:mx-4 { margin-left: 1rem; margin-right: 1rem; }

  .sm\:my-0 { margin-top: 0; margin-bottom: 0; }
  .sm\:my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .sm\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }

  .sm\:mt-0 { margin-top: 0; }
  .sm\:mt-2 { margin-top: 0.5rem; }
  .sm\:mt-4 { margin-top: 1rem; }
  .sm\:mt-6 { margin-top: 1.5rem; }
  .sm\:mt-8 { margin-top: 2rem; }

  .sm\:mb-0 { margin-bottom: 0; }
  .sm\:mb-2 { margin-bottom: 0.5rem; }
  .sm\:mb-4 { margin-bottom: 1rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:mb-8 { margin-bottom: 2rem; }

  .sm\:w-auto { width: auto; }
  .sm\:w-full { width: 100%; }
  .sm\:w-1\/2 { width: 50%; }
  .sm\:w-1\/3 { width: 33.333333%; }
  .sm\:w-2\/3 { width: 66.666667%; }
  .sm\:w-1\/4 { width: 25%; }
  .sm\:w-3\/4 { width: 75%; }

  .sm\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }

  .sm\:text-left { text-align: left; }
  .sm\:text-center { text-align: center; }
  .sm\:text-right { text-align: right; }
}
/* === MD BREAKPOINT (768px) === */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:inline { display: inline; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }

  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:flex-wrap { flex-wrap: wrap; }

  .md\:items-start { align-items: flex-start; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:items-stretch { align-items: stretch; }

  .md\:justify-start { justify-content: flex-start; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-end { justify-content: flex-end; }
  .md\:justify-between { justify-content: space-between; }

  .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .md\:gap-0 { gap: 0; }
  .md\:gap-1 { gap: 0.25rem; }
  .md\:gap-2 { gap: 0.5rem; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }

  .md\:p-0 { padding: 0; }
  .md\:p-2 { padding: 0.5rem; }
  .md\:p-4 { padding: 1rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:p-16 { padding: 4rem; }

  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

  .md\:py-0 { padding-top: 0; padding-bottom: 0; }
  .md\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }

  .md\:m-0 { margin: 0; }
  .md\:m-2 { margin: 0.5rem; }
  .md\:m-4 { margin: 1rem; }
  .md\:m-6 { margin: 1.5rem; }
  .md\:m-8 { margin: 2rem; }
  .md\:mx-auto { margin-left: auto; margin-right: auto; }

  .md\:mx-0 { margin-left: 0; margin-right: 0; }
  .md\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
  .md\:mx-4 { margin-left: 1rem; margin-right: 1rem; }

  .md\:my-0 { margin-top: 0; margin-bottom: 0; }
  .md\:my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .md\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }

  .md\:mt-0 { margin-top: 0; }
  .md\:mt-2 { margin-top: 0.5rem; }
  .md\:mt-4 { margin-top: 1rem; }
  .md\:mt-6 { margin-top: 1.5rem; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:mt-16 { margin-top: 4rem; }

  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-2 { margin-bottom: 0.5rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-6 { margin-bottom: 1.5rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:mb-12 { margin-bottom: 3rem; }

  .md\:ml-0 { margin-left: 0; }
  .md\:ml-2 { margin-left: 0.5rem; }
  .md\:ml-4 { margin-left: 1rem; }
  .md\:ml-auto { margin-left: auto; }

  .md\:mr-0 { margin-right: 0; }
  .md\:mr-2 { margin-right: 0.5rem; }
  .md\:mr-4 { margin-right: 1rem; }
  .md\:mr-auto { margin-right: auto; }

  .md\:w-auto { width: auto; }
  .md\:w-full { width: 100%; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:w-1\/4 { width: 25%; }
  .md\:w-3\/4 { width: 75%; }

  .md\:max-w-none { max-width: none; }
  .md\:max-w-sm { max-width: 24rem; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-3xl { max-width: 48rem; }

  .md\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }

  .md\:text-left { text-align: left; }
  .md\:text-center { text-align: center; }
  .md\:text-right { text-align: right; }
}
/* === LG BREAKPOINT (1024px) === */
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:inline-block { display: inline-block; }
  .lg\:inline { display: inline; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }

  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:flex-wrap { flex-wrap: wrap; }

  .lg\:items-start { align-items: flex-start; }
  .lg\:items-center { align-items: center; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:items-stretch { align-items: stretch; }

  .lg\:justify-start { justify-content: flex-start; }
  .lg\:justify-center { justify-content: center; }
  .lg\:justify-end { justify-content: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:justify-around { justify-content: space-around; }

  .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

  .lg\:gap-0 { gap: 0; }
  .lg\:gap-1 { gap: 0.25rem; }
  .lg\:gap-2 { gap: 0.5rem; }
  .lg\:gap-3 { gap: 0.75rem; }
  .lg\:gap-4 { gap: 1rem; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }

  .lg\:p-0 { padding: 0; }
  .lg\:p-2 { padding: 0.5rem; }
  .lg\:p-4 { padding: 1rem; }
  .lg\:p-6 { padding: 1.5rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:p-16 { padding: 4rem; }

  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .lg\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .lg\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .lg\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .lg\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .lg\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }

  .lg\:m-0 { margin: 0; }
  .lg\:m-2 { margin: 0.5rem; }
  .lg\:m-4 { margin: 1rem; }
  .lg\:m-6 { margin: 1.5rem; }
  .lg\:m-8 { margin: 2rem; }
  .lg\:mx-auto { margin-left: auto; margin-right: auto; }

  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
  .lg\:mx-4 { margin-left: 1rem; margin-right: 1rem; }

  .lg\:my-0 { margin-top: 0; margin-bottom: 0; }
  .lg\:my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .lg\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }

  .lg\:mt-0 { margin-top: 0; }
  .lg\:mt-2 { margin-top: 0.5rem; }
  .lg\:mt-4 { margin-top: 1rem; }
  .lg\:mt-6 { margin-top: 1.5rem; }
  .lg\:mt-8 { margin-top: 2rem; }
  .lg\:mt-12 { margin-top: 3rem; }
  .lg\:mt-16 { margin-top: 4rem; }

  .lg\:mb-0 { margin-bottom: 0; }
  .lg\:mb-2 { margin-bottom: 0.5rem; }
  .lg\:mb-4 { margin-bottom: 1rem; }
  .lg\:mb-6 { margin-bottom: 1.5rem; }
  .lg\:mb-8 { margin-bottom: 2rem; }
  .lg\:mb-12 { margin-bottom: 3rem; }
  .lg\:mb-16 { margin-bottom: 4rem; }

  .lg\:ml-0 { margin-left: 0; }
  .lg\:ml-2 { margin-left: 0.5rem; }
  .lg\:ml-4 { margin-left: 1rem; }
  .lg\:ml-auto { margin-left: auto; }

  .lg\:mr-0 { margin-right: 0; }
  .lg\:mr-2 { margin-right: 0.5rem; }
  .lg\:mr-4 { margin-right: 1rem; }
  .lg\:mr-auto { margin-right: auto; }

  .lg\:w-auto { width: auto; }
  .lg\:w-full { width: 100%; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:w-1\/4 { width: 25%; }
  .lg\:w-3\/4 { width: 75%; }

  .lg\:max-w-none { max-width: none; }
  .lg\:max-w-sm { max-width: 24rem; }
  .lg\:max-w-md { max-width: 28rem; }
  .lg\:max-w-lg { max-width: 32rem; }
  .lg\:max-w-xl { max-width: 36rem; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-3xl { max-width: 48rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:max-w-5xl { max-width: 64rem; }
  .lg\:max-w-6xl { max-width: 72rem; }
  .lg\:max-w-7xl { max-width: 80rem; }

  .lg\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }

  .lg\:text-left { text-align: left; }
  .lg\:text-center { text-align: center; }
  .lg\:text-right { text-align: right; }

  .lg\:sticky { position: sticky; }
  .lg\:top-32 { top: 8rem; }
}
/* === XL BREAKPOINT (1280px) === */
@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:inline-block { display: inline-block; }
  .xl\:inline { display: inline; }
  .xl\:inline-flex { display: inline-flex; }
  .xl\:flex { display: flex; }
  .xl\:grid { display: grid; }
  .xl\:hidden { display: none; }

  .xl\:flex-row { flex-direction: row; }
  .xl\:flex-col { flex-direction: column; }
  .xl\:flex-wrap { flex-wrap: wrap; }

  .xl\:items-start { align-items: flex-start; }
  .xl\:items-center { align-items: center; }
  .xl\:items-end { align-items: flex-end; }
  .xl\:items-stretch { align-items: stretch; }

  .xl\:justify-start { justify-content: flex-start; }
  .xl\:justify-center { justify-content: center; }
  .xl\:justify-end { justify-content: flex-end; }
  .xl\:justify-between { justify-content: space-between; }
  .xl\:justify-around { justify-content: space-around; }

  .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .xl\:gap-0 { gap: 0; }
  .xl\:gap-1 { gap: 0.25rem; }
  .xl\:gap-2 { gap: 0.5rem; }
  .xl\:gap-3 { gap: 0.75rem; }
  .xl\:gap-4 { gap: 1rem; }
  .xl\:gap-6 { gap: 1.5rem; }
  .xl\:gap-8 { gap: 2rem; }
  .xl\:gap-10 { gap: 2.5rem; }
  .xl\:gap-12 { gap: 3rem; }
  .xl\:gap-16 { gap: 4rem; }

  .xl\:p-0 { padding: 0; }
  .xl\:p-2 { padding: 0.5rem; }
  .xl\:p-4 { padding: 1rem; }
  .xl\:p-6 { padding: 1.5rem; }
  .xl\:p-8 { padding: 2rem; }
  .xl\:p-10 { padding: 2.5rem; }
  .xl\:p-12 { padding: 3rem; }
  .xl\:p-16 { padding: 4rem; }
  .xl\:p-20 { padding: 5rem; }
  .xl\:p-24 { padding: 6rem; }

  .xl\:px-0 { padding-left: 0; padding-right: 0; }
  .xl\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .xl\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .xl\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .xl\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .xl\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .xl\:px-16 { padding-left: 4rem; padding-right: 4rem; }

  .xl\:py-0 { padding-top: 0; padding-bottom: 0; }
  .xl\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .xl\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .xl\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .xl\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .xl\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .xl\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .xl\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .xl\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .xl\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }

  .xl\:m-0 { margin: 0; }
  .xl\:m-2 { margin: 0.5rem; }
  .xl\:m-4 { margin: 1rem; }
  .xl\:m-6 { margin: 1.5rem; }
  .xl\:m-8 { margin: 2rem; }
  .xl\:mx-auto { margin-left: auto; margin-right: auto; }

  .xl\:mx-0 { margin-left: 0; margin-right: 0; }
  .xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
  .xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; }

  .xl\:my-0 { margin-top: 0; margin-bottom: 0; }
  .xl\:my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .xl\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }

  .xl\:mt-0 { margin-top: 0; }
  .xl\:mt-2 { margin-top: 0.5rem; }
  .xl\:mt-4 { margin-top: 1rem; }
  .xl\:mt-6 { margin-top: 1.5rem; }
  .xl\:mt-8 { margin-top: 2rem; }
  .xl\:mt-12 { margin-top: 3rem; }
  .xl\:mt-16 { margin-top: 4rem; }
  .xl\:mt-20 { margin-top: 5rem; }
  .xl\:mt-24 { margin-top: 6rem; }

  .xl\:mb-0 { margin-bottom: 0; }
  .xl\:mb-2 { margin-bottom: 0.5rem; }
  .xl\:mb-4 { margin-bottom: 1rem; }
  .xl\:mb-6 { margin-bottom: 1.5rem; }
  .xl\:mb-8 { margin-bottom: 2rem; }
  .xl\:mb-12 { margin-bottom: 3rem; }
  .xl\:mb-16 { margin-bottom: 4rem; }
  .xl\:mb-20 { margin-bottom: 5rem; }
  .xl\:mb-24 { margin-bottom: 6rem; }

  .xl\:ml-0 { margin-left: 0; }
  .xl\:ml-2 { margin-left: 0.5rem; }
  .xl\:ml-4 { margin-left: 1rem; }
  .xl\:ml-auto { margin-left: auto; }

  .xl\:mr-0 { margin-right: 0; }
  .xl\:mr-2 { margin-right: 0.5rem; }
  .xl\:mr-4 { margin-right: 1rem; }
  .xl\:mr-auto { margin-right: auto; }

  .xl\:w-auto { width: auto; }
  .xl\:w-full { width: 100%; }
  .xl\:w-1\/2 { width: 50%; }
  .xl\:w-1\/3 { width: 33.333333%; }
  .xl\:w-2\/3 { width: 66.666667%; }
  .xl\:w-1\/4 { width: 25%; }
  .xl\:w-3\/4 { width: 75%; }

  .xl\:max-w-none { max-width: none; }
  .xl\:max-w-sm { max-width: 24rem; }
  .xl\:max-w-md { max-width: 28rem; }
  .xl\:max-w-lg { max-width: 32rem; }
  .xl\:max-w-xl { max-width: 36rem; }
  .xl\:max-w-2xl { max-width: 42rem; }
  .xl\:max-w-3xl { max-width: 48rem; }
  .xl\:max-w-4xl { max-width: 56rem; }
  .xl\:max-w-5xl { max-width: 64rem; }
  .xl\:max-w-6xl { max-width: 72rem; }
  .xl\:max-w-7xl { max-width: 80rem; }

  .xl\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .xl\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .xl\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .xl\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .xl\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .xl\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .xl\:text-5xl { font-size: 3rem; line-height: 1; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }

  .xl\:text-left { text-align: left; }
  .xl\:text-center { text-align: center; }
  .xl\:text-right { text-align: right; }

  .xl\:sticky { position: sticky; }
  .xl\:top-32 { top: 8rem; }
}

/* === 2XL BREAKPOINT (1280px) === */
@media (min-width: 1280px) {
  .2xl\:block { display: block; }
  .2xl\:inline-block { display: inline-block; }
  .2xl\:inline { display: inline; }
  .2xl\:inline-flex { display: inline-flex; }
  .2xl\:flex { display: flex; }
  .2xl\:grid { display: grid; }
  .2xl\:hidden { display: none; }

  .2xl\:flex-row { flex-direction: row; }
  .2xl\:flex-col { flex-direction: column; }
  .2xl\:flex-wrap { flex-wrap: wrap; }

  .2xl\:items-start { align-items: flex-start; }
  .2xl\:items-center { align-items: center; }
  .2xl\:items-end { align-items: flex-end; }
  .2xl\:items-stretch { align-items: stretch; }

  .2xl\:justify-start { justify-content: flex-start; }
  .2xl\:justify-center { justify-content: center; }
  .2xl\:justify-end { justify-content: flex-end; }
  .2xl\:justify-between { justify-content: space-between; }
  .2xl\:justify-around { justify-content: space-around; }

  .2xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .2xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .2xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .2xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .2xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .2xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .2xl\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

  .2xl\:gap-0 { gap: 0; }
  .2xl\:gap-1 { gap: 0.25rem; }
  .2xl\:gap-2 { gap: 0.5rem; }
  .2xl\:gap-3 { gap: 0.75rem; }
  .2xl\:gap-4 { gap: 1rem; }
  .2xl\:gap-6 { gap: 1.5rem; }
  .2xl\:gap-8 { gap: 2rem; }
  .2xl\:gap-10 { gap: 2.5rem; }
  .2xl\:gap-12 { gap: 3rem; }
  .2xl\:gap-16 { gap: 4rem; }

  .2xl\:p-0 { padding: 0; }
  .2xl\:p-2 { padding: 0.5rem; }
  .2xl\:p-4 { padding: 1rem; }
  .2xl\:p-6 { padding: 1.5rem; }
  .2xl\:p-8 { padding: 2rem; }
  .2xl\:p-10 { padding: 2.5rem; }
  .2xl\:p-12 { padding: 3rem; }
  .2xl\:p-16 { padding: 4rem; }
  .2xl\:p-20 { padding: 5rem; }
  .2xl\:p-24 { padding: 6rem; }

  .2xl\:px-0 { padding-left: 0; padding-right: 0; }
  .2xl\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
  .2xl\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .2xl\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .2xl\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .2xl\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .2xl\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .2xl\:px-16 { padding-left: 4rem; padding-right: 4rem; }

  .2xl\:py-0 { padding-top: 0; padding-bottom: 0; }
  .2xl\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .2xl\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .2xl\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .2xl\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .2xl\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .2xl\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .2xl\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .2xl\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .2xl\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }

  .2xl\:m-0 { margin: 0; }
  .2xl\:m-2 { margin: 0.5rem; }
  .2xl\:m-4 { margin: 1rem; }
  .2xl\:m-6 { margin: 1.5rem; }
  .2xl\:m-8 { margin: 2rem; }
  .2xl\:mx-auto { margin-left: auto; margin-right: auto; }

  .2xl\:mx-0 { margin-left: 0; margin-right: 0; }
  .2xl\:mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
  .2xl\:mx-4 { margin-left: 1rem; margin-right: 1rem; }

  .2xl\:my-0 { margin-top: 0; margin-bottom: 0; }
  .2xl\:my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
  .2xl\:my-4 { margin-top: 1rem; margin-bottom: 1rem; }

  .2xl\:mt-0 { margin-top: 0; }
  .2xl\:mt-2 { margin-top: 0.5rem; }
  .2xl\:mt-4 { margin-top: 1rem; }
  .2xl\:mt-6 { margin-top: 1.5rem; }
  .2xl\:mt-8 { margin-top: 2rem; }
  .2xl\:mt-12 { margin-top: 3rem; }
  .2xl\:mt-16 { margin-top: 4rem; }
  .2xl\:mt-20 { margin-top: 5rem; }
  .2xl\:mt-24 { margin-top: 6rem; }

  .2xl\:mb-0 { margin-bottom: 0; }
  .2xl\:mb-2 { margin-bottom: 0.5rem; }
  .2xl\:mb-4 { margin-bottom: 1rem; }
  .2xl\:mb-6 { margin-bottom: 1.5rem; }
  .2xl\:mb-8 { margin-bottom: 2rem; }
  .2xl\:mb-12 { margin-bottom: 3rem; }
  .2xl\:mb-16 { margin-bottom: 4rem; }
  .2xl\:mb-20 { margin-bottom: 5rem; }
  .2xl\:mb-24 { margin-bottom: 6rem; }

  .2xl\:ml-0 { margin-left: 0; }
  .2xl\:ml-2 { margin-left: 0.5rem; }
  .2xl\:ml-4 { margin-left: 1rem; }
  .2xl\:ml-auto { margin-left: auto; }

  .2xl\:mr-0 { margin-right: 0; }
  .2xl\:mr-2 { margin-right: 0.5rem; }
  .2xl\:mr-4 { margin-right: 1rem; }
  .2xl\:mr-auto { margin-right: auto; }

  .2xl\:w-auto { width: auto; }
  .2xl\:w-full { width: 100%; }
  .2xl\:w-1\/2 { width: 50%; }
  .2xl\:w-1\/3 { width: 33.333333%; }
  .2xl\:w-2\/3 { width: 66.666667%; }
  .2xl\:w-1\/4 { width: 25%; }
  .2xl\:w-3\/4 { width: 75%; }

  .2xl\:max-w-none { max-width: none; }
  .2xl\:max-w-sm { max-width: 24rem; }
  .2xl\:max-w-md { max-width: 28rem; }
  .2xl\:max-w-lg { max-width: 32rem; }
  .2xl\:max-w-xl { max-width: 36rem; }
  .2xl\:max-w-2xl { max-width: 42rem; }
  .2xl\:max-w-3xl { max-width: 48rem; }
  .2xl\:max-w-4xl { max-width: 56rem; }
  .2xl\:max-w-5xl { max-width: 64rem; }
  .2xl\:max-w-6xl { max-width: 72rem; }
  .2xl\:max-w-7xl { max-width: 80rem; }

  .2xl\:text-xs { font-size: 0.75rem; line-height: 1rem; }
  .2xl\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .2xl\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .2xl\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .2xl\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .2xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .2xl\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .2xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .2xl\:text-5xl { font-size: 3rem; line-height: 1; }
  .2xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .2xl\:text-7xl { font-size: 4.5rem; line-height: 1; }

  .2xl\:text-left { text-align: left; }
  .2xl\:text-center { text-align: center; }
  .2xl\:text-right { text-align: right; }

  .2xl\:sticky { position: sticky; }
  .2xl\:top-32 { top: 8rem; }
}
/* ============================================================
   INTERACTIVE STATES (data attributes)
   ============================================================ */
[data-state="open"] > .accordion-trigger { }
[data-state="closed"] > .accordion-trigger { }
[data-state="open"] > .accordion-content { }
[data-state="closed"] > .accordion-content { }

/* Hover for accordion trigger */
.accordion-trigger:hover { background-color: hsl(var(--muted) / 0.5); }
.accordion-trigger[data-state="open"] { background-color: hsl(var(--muted) / 0.5); }

/* ============================================================
   CUBIGO CUSTOM COMPONENTS
   ============================================================ */

/* Language Switcher Button */
.lang-btn {
  padding: 0.125rem 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  color: inherit;
}
.lang-btn:hover {
  color: hsl(var(--primary));
}
.lang-btn.active {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* FAQ Accordion */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
}
.faq-trigger:hover {
  background-color: hsl(var(--muted) / 0.5);
}
.faq-trigger.open {
  background-color: hsl(var(--muted) / 0.5);
}

.faq-content {
  display: none;
}
.faq-content.open {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}
.faq-icon.open {
  transform: rotate(180deg);
}

/* Center Page Hero */
.center-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(240 43% 14% / 0.6), hsl(240 43% 14% / 0.8));
}
.hero-content {
  position: relative;
  z-index: 10;
  color: white;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Card Icon */
.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

/* ============================================================
   CENTER PAGE COMPONENTS
   ============================================================ */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(0 0% 100% / 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid hsl(240 10% 90% / 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 2.5rem;
  width: auto;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: hsl(240 10% 45%);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: hsl(255 100% 62%);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: hsl(240 43% 14%);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsl(0 0% 100% / 0.15);
  border: 1px solid hsl(0 0% 100% / 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover {
  background: hsl(255 100% 62% / 0.9);
  box-shadow: var(--shadow-md);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-whatsapp {
  background: #25d366;
  color: white;
}
.btn-whatsapp:hover {
  background: #20ba5a;
}
.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-white {
  background: white;
  color: hsl(var(--primary));
}
.btn-white:hover {
  background: hsl(0 0% 100% / 0.9);
}

/* Section */
.section {
  padding: 6rem 0;
}

/* Map Section */
.map-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.map-card {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.address {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.map-description {
  color: hsl(240 10% 45%);
  margin-bottom: 1rem;
}
.map-embed {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: var(--radius);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-text p {
  color: hsl(240 10% 45%);
  line-height: 1.7;
}

/* Carousel */
.about-carousel {
  position: relative;
}
.carousel {
  position: relative;
}
.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
  border-radius: var(--radius);
}
.carousel-slide {
  min-width: 100%;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: white;
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  font-size: 1rem;
  z-index: 10;
}
.carousel-btn:hover {
  background: hsl(var(--muted));
}
.carousel-prev {
  left: -3rem;
}
.carousel-next {
  right: -3rem;
}
.carousel-dots {
  display: none;
}

/* Access Section */
.access-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-header p {
  color: hsl(240 10% 45%);
}
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Transport Section */
.transport-section {
  padding: 6rem 0;
  background: white;
}
.mint {
  background: hsl(var(--cubigo-mint));
  color: hsl(var(--cubigo-dark-mint));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}

/* Security Section */
.security-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: hsl(var(--primary));
  color: white;
  text-align: center;
}
.cta-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: hsl(240 43% 14%);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  color: hsl(240 4% 86%);
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-links h4,
.footer-centers h4,
.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links ul,
.footer-centers ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li,
.footer-centers li,
.footer-contact li {
  margin-bottom: 0.5rem;
}
.footer-links a,
.footer-centers a,
.footer-contact a {
  color: hsl(240 4% 86%);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-centers a:hover,
.footer-contact a:hover {
  color: hsl(var(--cubigo-mint));
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(240 4% 86% / 0.2);
  text-align: center;
  color: hsl(240 4% 86%);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 40;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav li {
    border-bottom: 1px solid hsl(var(--border));
  }
  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }
  .mobile-toggle { display: block; }
  .map-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; }
}
