/* Offline utility classes replacing Tailwind CDN dependency. */
.container-wrap {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-inline: auto; }
.min-h-screen { min-height: 100vh; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-inline: 1rem; }
.py-2 { padding-block: 0.5rem; }
.py-3 { padding-block: 0.75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-16 { padding-block: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }

.\!px-2 { padding-inline: 0.5rem !important; }
.\!px-3 { padding-inline: 0.75rem !important; }
.\!py-1 { padding-block: 0.25rem !important; }
.\!py-2 { padding-block: 0.5rem !important; }

.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; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }

.overflow-hidden { overflow: hidden; }

.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-0 { border: 0; }
.border-\[var\(--border\)\] { border-color: var(--border); }

.sticky { position: sticky; }
.top-0 { top: 0; }
.z-40 { z-index: 40; }

.text-center { text-align: center; }
.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-4xl { font-size: 2.25rem; line-height: 1.2; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.2; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-\[0\.08em\] { letter-spacing: 0.08em; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.text-cyan-300 { color: rgb(103 232 249); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-slate-200\/80 { color: rgba(226, 232, 240, 0.8); }
.text-slate-200\/85 { color: rgba(226, 232, 240, 0.85); }
.text-slate-200\/86 { color: rgba(226, 232, 240, 0.86); }
.text-\[var\(--text\)\] { color: var(--text); }

.bg-\[\#08080d\] { background-color: #08080d; }
.bg-\[\#0f0f16\] { background-color: #0f0f16; }
.bg-\[\#09090fcc\]\/90 { background-color: rgba(9, 9, 15, 0.9); }
.backdrop-blur { backdrop-filter: blur(8px); }

@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:gap-4 { gap: 1rem; }
    .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\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:p-7 { padding: 1.75rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.6; }
    .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
}

@media (min-width: 1024px) {
    .lg\:gap-8 { gap: 2rem; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
    .lg\:grid-cols-\[1\.1fr_0\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
    .lg\:grid-cols-\[1\.15fr_0\.85fr\] { grid-template-columns: 1.15fr 0.85fr; }
    .lg\:grid-cols-\[260px_1fr\] { grid-template-columns: 260px 1fr; }
    .lg\:py-8 { padding-block: 2rem; }
    .lg\:py-10 { padding-block: 2.5rem; }
    .lg\:p-8 { padding: 2rem; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
