/* layer: preflights */
*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}

:root {
    /* Nền Trắng Sứ dịu mắt */
    --background: 45 20% 98%;
    --foreground: 215 50% 10%;

    /* Primary: Midnight Blue */
    --primary: 215 45% 15%;
    --primary-foreground: 45 100% 98%;

    /* Secondary: Bronze Gold */
    --secondary: 42 45% 45%;
    --secondary-foreground: 215 45% 10%;

    /* Muted */
    --muted: 215 15% 94%;
    --muted-foreground: 215 10% 45%;

    --border: 42 20% 85%;
    --radius: 0.75rem;
}

.dark {
    --background: 215 45% 5%;
    --foreground: 45 100% 95%;
    --primary: 42 45% 45%;
    --primary-foreground: 215 45% 10%;
    --secondary: 215 30% 30%;
    --border: 215 30% 15%;
}


body {
    font-family: "Inter", "Be Vietnam Pro", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: -0.015em;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

h1, h2, h3, h4 {
    font-family: "Lexend", sans-serif;
    letter-spacing: -0.015em;
    font-weight: 700;
    color: hsl(var(--primary));
}

/* AlpineJS cloak */
[x-cloak] {
    display: none !important;
}


/* Gold shimmer background */
.bg-gold-shimmer {
    background: linear-gradient(
        135deg,
        hsl(var(--secondary)) 0%,
        #e3bb25 50%,
        hsl(var(--secondary)) 100%
    );
    background-size: 200% auto;
    transition: background-position 0.5s ease;
}
.bg-gold-shimmer:hover {
    background-position: right center;
}

/* Luxury border with gradient */
.border-luxury {
    border: 1px solid transparent;
    background:
        linear-gradient(hsl(var(--background)), hsl(var(--background))) padding-box,
        linear-gradient(to right, #b49248, #e3bb25, #b49248) border-box;
}

/* Radial glow */
.bg-glow-radial {
    background: radial-gradient(
        circle,
        hsl(var(--secondary) / 0.1) 0%,
        transparent 75%
    );
}

/* Warm gradient overlay */
.warm-gradient {
    background: linear-gradient(
        180deg,
        hsl(var(--background) / 0) 0%,
        hsl(var(--secondary) / 0.05) 100%
    );
}

.warm-overlay {
    background: radial-gradient(circle at top right, hsl(var(--secondary) / 0.08), transparent 40%);
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image warmth filter */
.image-warmth {
    filter: sepia(20%) contrast(1.1);
    transition: all 1s ease;
}
.image-warmth:hover {
    filter: sepia(0%) contrast(1);
}

/* Service card */
.service-card:not(.bg-foreground):hover {
    transform: translateY(-0.5rem);
    background-color: hsl(var(--muted) / 0.4);
}
.service-card.bg-foreground:hover {
    transform: translateY(-0.5rem);
}

/* btn-call-luxury hover glow */
.btn-call-luxury:hover {
    box-shadow: 0 0 15px -3px hsl(var(--secondary) / 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background-color: hsl(var(--background));
}
::-webkit-scrollbar-thumb {
    background-color: hsl(var(--secondary) / 0.2);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: hsl(var(--secondary) / 0.5);
    transition: background-color 0.2s;
}


.prose {
    color: hsl(var(--foreground) / 0.9);
    line-height: 1.625;
}

.prose h2 {
    font-family: "Lexend", sans-serif;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
    border-left: 4px solid hsl(var(--secondary));
    padding-left: 1rem;
}

@media (min-width: 768px) {
    .prose h2 { font-size: 1.875rem; }
}

.prose h3 {
    font-family: "Lexend", sans-serif;
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .prose h3 { font-size: 1.5rem; }
}

.prose p {
    margin-bottom: 1.5rem;
    font-family: "Inter", "Be Vietnam Pro", sans-serif;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .prose p { font-size: 1.125rem; }
}

.prose strong {
    font-weight: 700;
    color: hsl(var(--primary));
}

.prose a {
    color: hsl(var(--secondary));
    text-decoration: underline;
    text-decoration-color: hsl(var(--secondary) / 0.3);
    text-underline-offset: 4px;
    transition: all 0.2s;
}
.prose a:hover {
    color: hsl(var(--primary));
    text-decoration-color: hsl(var(--primary));
}

.prose ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.prose ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}
.prose ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: hsl(var(--secondary));
}

.prose ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}
.prose ol li {
    margin-bottom: 0.75rem;
}
.prose ol li::marker {
    color: hsl(var(--secondary));
    font-weight: 700;
}

.prose blockquote {
    border-left: 4px solid hsl(var(--secondary) / 0.4);
    background-color: hsl(var(--muted) / 0.3);
    padding: 1.5rem 2rem;
    font-style: italic;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: hsl(var(--primary) / 0.8);
}

.prose img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    border: 1px solid hsl(var(--border) / 0.5);
    margin: 2.5rem auto;
    display: block;
}

.prose hr {
    border-top: 1px solid hsl(var(--border));
    margin: 3rem 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .prose table { font-size: 1rem; }
}


/* ============================================================
   TOC — Table of Contents (BEM, Alpine.js)
   Khai báo trong: uno.config.ts > preflights
   Classes: .toc, .toc__header, .toc__title, .toc__icon,
            .toc__toggle, .toc__toggle-icon, .toc__content,
            .toc__list, .toc__item, .toc__item--level-N,
            .toc__link, .toc__link-prefix, .toc__link-text
   ============================================================ */

.toc {
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background-color: hsl(var(--muted) / 0.3);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Header (clickable) */
.toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}
.toc__header:hover {
    background-color: hsl(var(--muted) / 0.6);
}

/* Title */
.toc__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Lexend", sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(var(--primary));
}

/* Icon mục lục (list-bullet SVG inline) */
.toc__icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    display: inline-block;
    background-color: hsl(var(--secondary));
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0zM3.75 12h.007v.008H3.75V12zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0zm-.375 5.25h.007v.008H3.75v-.008zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0zM3.75 12h.007v.008H3.75V12zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0zm-.375 5.25h.007v.008H3.75v-.008zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* Toggle chevron */
.toc__toggle {
    display: flex;
    align-items: center;
    color: hsl(var(--muted-foreground));
}
/* chevron-right (trạng thái đóng) */
.toc__toggle-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    flex-shrink: 0;
    background-color: hsl(var(--muted-foreground));
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m8.25 4.5 7.5 7.5-7.5 7.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m8.25 4.5 7.5 7.5-7.5 7.5'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.25s ease;
}
/* chevron-down (trạng thái mở) */
.toc__toggle-icon--open {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
}

/* Content area */
.toc__content {
    border-top: 1px solid hsl(var(--border) / 0.6);
    padding: 1rem 1.25rem 1.25rem;
}

/* Ordered list — đánh số thứ tự
   Override hoàn toàn .prose ul styles */
.toc__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Item — loại bỏ bullet của .prose ul li */
.toc__item {
    padding-left: calc(var(--toc-indent, 0) * 1.25rem) !important;
    margin-bottom: 0 !important;
    position: relative;
}
/* Override ::before bullet từ .prose ul li::before */
.toc__item::before {
    display: none !important;
    content: none !important;
}

/* Separator line giữa các mục */
.toc__item + .toc__item {
    border-top: 1px solid hsl(var(--border) / 0.35);
}

/* Link */
.toc__link {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.45rem 0.25rem;
    text-decoration: none !important;
    color: hsl(var(--foreground) / 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: color 0.15s ease, padding-left 0.15s ease;
    border-radius: 0.25rem;
}
.toc__link:hover {
    color: hsl(var(--primary));
    background-color: hsl(var(--muted) / 0.5);
    padding-left: 0.375rem;
}

/* Số thứ tự phân cấp được tạo từ JS */
.toc__link-prefix {
    flex-shrink: 0;
    min-width: 1.5rem;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: hsl(var(--secondary));
    font-size: 0.8125rem;
}

.toc__link-text {
    flex: 1;
}

/* Phân cấp heading — chữ nhỏ hơn và màu mờ hơn */
.toc__item--level-2 .toc__link {
    font-weight: 600;
    font-size: 0.875rem;
    color: hsl(var(--primary) / 0.9);
}
.toc__item--level-3 .toc__link {
    font-weight: 400;
    font-size: 0.8125rem;
    color: hsl(var(--foreground) / 0.75);
}
.toc__item--level-4 .toc__link,
.toc__item--level-5 .toc__link,
.toc__item--level-6 .toc__link {
    font-weight: 400;
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

/* layer: default */
.absolute{position:absolute;}
.relative{position:relative;}
.sticky{position:sticky;}
.-bottom-24{bottom:-6rem;}
.-left-24{left:-6rem;}
.-right-24{right:-6rem;}
.-top-24{top:-6rem;}
.top-0{top:0;}
.z-10{z-index:10;}
.z-50{z-index:50;}
.grid{display:grid;}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}
.mx-auto{margin-left:auto;margin-right:auto;}
.mb-1{margin-bottom:0.25rem;}
.mb-2{margin-bottom:0.5rem;}
.mb-3{margin-bottom:0.75rem;}
.mb-4{margin-bottom:1rem;}
.mb-8{margin-bottom:2rem;}
.mr-2{margin-right:0.5rem;}
.mt-2{margin-top:0.5rem;}
.mt-3{margin-top:0.75rem;}
.mt-4{margin-top:1rem;}
.block{display:block;}
.hidden{display:none;}
.h-16{height:4rem;}
.h-96{height:24rem;}
.max-w-2xl{max-width:42rem;}
.max-w-3xl{max-width:48rem;}
.max-w-4xl{max-width:56rem;}
.max-w-7xl{max-width:80rem;}
.min-h-screen{min-height:100vh;}
.w-96{width:24rem;}
.w-full{width:100%;}
.flex{display:flex;}
.flex-shrink-0{flex-shrink:0;}
.flex-col{flex-direction:column;}
.items-center{align-items:center;}
.justify-center{justify-content:center;}
.justify-between{justify-content:space-between;}
.gap-2{gap:0.5rem;}
.gap-3{gap:0.75rem;}
.gap-8{gap:2rem;}
.space-x-2>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.5rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.5rem * var(--un-space-x-reverse));}
.space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1rem * var(--un-space-x-reverse));}
.space-x-8>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(2rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(2rem * var(--un-space-x-reverse));}
.space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.25rem * var(--un-space-y-reverse));}
.space-y-2>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.5rem * var(--un-space-y-reverse));}
.overflow-hidden{overflow:hidden;}
.b,
.border{border-width:1px;}
.border-b{border-bottom-width:1px;}
.border-b-2{border-bottom-width:2px;}
.border-t{border-top-width:1px;}
.border-amber-500\/30{border-color:rgb(245 158 11 / 0.3);}
.border-emerald-600{--un-border-opacity:1;border-color:rgb(5 150 105 / var(--un-border-opacity));}
.border-gray-100{--un-border-opacity:1;border-color:rgb(243 244 246 / var(--un-border-opacity));}
.border-gray-200{--un-border-opacity:1;border-color:rgb(229 231 235 / var(--un-border-opacity));}
.border-gray-800{--un-border-opacity:1;border-color:rgb(31 41 55 / var(--un-border-opacity));}
.rounded-2xl{border-radius:1rem;}
.rounded-full{border-radius:9999px;}
.rounded-lg{border-radius:0.5rem;}
.rounded-md{border-radius:var(--radius);}
.rounded-xl{border-radius:0.75rem;}
.bg-amber-500{--un-bg-opacity:1;background-color:rgb(245 158 11 / var(--un-bg-opacity));}
.bg-amber-500\/20{background-color:rgb(245 158 11 / 0.2);}
.bg-background{--un-bg-opacity:1;background-color:hsl(var(--background) / var(--un-bg-opacity));}
.bg-emerald-50{--un-bg-opacity:1;background-color:rgb(236 253 245 / var(--un-bg-opacity));}
.bg-emerald-600{--un-bg-opacity:1;background-color:rgb(5 150 105 / var(--un-bg-opacity));}
.bg-emerald-700{--un-bg-opacity:1;background-color:rgb(4 120 87 / var(--un-bg-opacity));}
.bg-emerald-800{--un-bg-opacity:1;background-color:rgb(6 95 70 / var(--un-bg-opacity));}
.bg-gray-50{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity));}
.bg-gray-900{--un-bg-opacity:1;background-color:rgb(17 24 39 / var(--un-bg-opacity));}
.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity));}
.hover\:bg-amber-600:hover{--un-bg-opacity:1;background-color:rgb(217 119 6 / var(--un-bg-opacity));}
.hover\:bg-emerald-700:hover{--un-bg-opacity:1;background-color:rgb(4 120 87 / var(--un-bg-opacity));}
.hover\:bg-gray-100:hover{--un-bg-opacity:1;background-color:rgb(243 244 246 / var(--un-bg-opacity));}
.hover\:bg-gray-50:hover{--un-bg-opacity:1;background-color:rgb(249 250 251 / var(--un-bg-opacity));}
.bg-gradient-to-r{--un-gradient-shape:to right;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}
.p-4{padding:1rem;}
.px-1{padding-left:0.25rem;padding-right:0.25rem;}
.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;}
.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}
.py-16{padding-top:4rem;padding-bottom:4rem;}
.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}
.py-2\.5{padding-top:0.625rem;padding-bottom:0.625rem;}
.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}
.pb-3{padding-bottom:0.75rem;}
.pb-4{padding-bottom:1rem;}
.pb-6{padding-bottom:1.5rem;}
.pb-8{padding-bottom:2rem;}
.pl-1{padding-left:0.25rem;}
.pt-1{padding-top:0.25rem;}
.pt-12{padding-top:3rem;}
.pt-2{padding-top:0.5rem;}
.pt-4{padding-top:1rem;}
.text-center{text-align:center;}
.text-left{text-align:left;}
.align-middle{vertical-align:middle;}
.text-2xl{font-size:1.5rem;line-height:2rem;}
.text-3xl{font-size:1.875rem;line-height:2.25rem;}
.text-base{font-size:1rem;line-height:1.5rem;}
.text-sm{font-size:0.875rem;line-height:1.25rem;}
.text-xl{font-size:1.25rem;line-height:1.75rem;}
.text-xs{font-size:0.75rem;line-height:1rem;}
.text-amber-300{--un-text-opacity:1;color:rgb(252 211 77 / var(--un-text-opacity));}
.text-emerald-100{--un-text-opacity:1;color:rgb(209 250 229 / var(--un-text-opacity));}
.text-emerald-600{--un-text-opacity:1;color:rgb(5 150 105 / var(--un-text-opacity));}
.text-foreground{--un-text-opacity:1;color:hsl(var(--foreground) / var(--un-text-opacity));}
.text-gray-400{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity));}
.text-gray-500{--un-text-opacity:1;color:rgb(107 114 128 / var(--un-text-opacity));}
.text-gray-600{--un-text-opacity:1;color:rgb(75 85 99 / var(--un-text-opacity));}
.text-gray-800{--un-text-opacity:1;color:rgb(31 41 55 / var(--un-text-opacity));}
.text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}
.hover\:text-emerald-600:hover{--un-text-opacity:1;color:rgb(5 150 105 / var(--un-text-opacity));}
.hover\:text-gray-700:hover{--un-text-opacity:1;color:rgb(55 65 81 / var(--un-text-opacity));}
.hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity));}
.font-bold{font-weight:700;}
.font-extrabold{font-weight:800;}
.font-medium{font-weight:500;}
.font-semibold{font-weight:600;}
.leading-relaxed{line-height:1.625;}
.tracking-tight{letter-spacing:-0.025em;}
.tracking-wider{letter-spacing:0.05em;}
.uppercase{text-transform:uppercase;}
.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}
.opacity-20{opacity:0.2;}
.opacity-30{opacity:0.3;}
.shadow-lg{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.shadow-sm{--un-shadow:var(--un-shadow-inset) 0 1px 2px 0 var(--un-shadow-color, rgb(0 0 0 / 0.05));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.shadow-xl{--un-shadow:var(--un-shadow-inset) 0 20px 25px -5px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 8px 10px -6px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}
.focus\:ring-2:focus{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.focus\:ring-emerald-500:focus{--un-ring-opacity:1;--un-ring-color:rgb(16 185 129 / var(--un-ring-opacity));}
.blur-2xl{--un-blur:blur(40px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}
.transition{transition-property:color,background-color,border-color,outline-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;}
@media (min-width: 640px){
.sm\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}
.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem;}
}
@media (min-width: 768px){
.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.md\:hidden{display:none;}
.md\:flex{display:flex;}
.md\:p-6{padding:1.5rem;}
.md\:py-24{padding-top:6rem;padding-bottom:6rem;}
.md\:text-5xl{font-size:3rem;line-height:1;}
.md\:text-lg{font-size:1.125rem;line-height:1.75rem;}
}
@media (min-width: 1024px){
.lg\:px-8{padding-left:2rem;padding-right:2rem;}
}