diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 19cc897..9ef8ba8 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -24,8 +24,8 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v2 - - name: Install rsync - run: sudo apt-get update && sudo apt-get install -y rsync + - name: Install system dependencies + run: sudo apt-get update && sudo apt-get install -y rsync build-essential libvips-dev - name: Setup SSH key run: | diff --git a/dist/404.html b/dist/404.html index 32ff0cf..38cc73b 100644 --- a/dist/404.html +++ b/dist/404.html @@ -1,37 +1,562 @@ -

+ const config = { ...defaults, ...options }; + + return { + searchQuery: '', + hasResults: true, + visibleCount: 0, + loading: false, // Start with loading state false - the LoadingManager will control this + + init() { + // Initialize the visible count + this.visibleCount = document.querySelectorAll(contentSelector).length; + this.setupWatchers(); + this.setupKeyboardShortcuts(); + + // Handle theme changes + window.addEventListener('theme-changed', () => { + this.filterContent(this.searchQuery); + }); + }, + + setupWatchers() { + this.$watch('searchQuery', (query) => { + // Filter content immediately - no artificial delay + this.filterContent(query); + }); + }, + + setupKeyboardShortcuts() { + // Track the currently focused item index + this.focusedItemIndex = -1; + + document.addEventListener('keydown', (e) => { + // '/' key focuses the search input + if (e.key === '/' && document.activeElement.id !== 'app-search') { + e.preventDefault(); + document.getElementById('app-search').focus(); + } + + // Escape key clears the search + if (e.key === 'Escape' && this.searchQuery !== '') { + this.searchQuery = ''; + document.getElementById('app-search').focus(); + this.focusedItemIndex = -1; + this.clearItemFocus(); + } + + // Arrow key navigation through results + if (this.searchQuery && (e.key === 'ArrowDown' || e.key === 'ArrowUp')) { + e.preventDefault(); + + const visibleItems = this.getVisibleItems(); + if (visibleItems.length === 0) return; + + // Update focused item index + if (e.key === 'ArrowDown') { + this.focusedItemIndex = Math.min(this.focusedItemIndex + 1, visibleItems.length - 1); + } else { + this.focusedItemIndex = Math.max(this.focusedItemIndex - 1, -1); + } + + // Clear previous focus + this.clearItemFocus(); + + // If we're back at -1, focus the search input + if (this.focusedItemIndex === -1) { + document.getElementById('app-search').focus(); + return; + } + + // Focus the new item + const itemToFocus = visibleItems[this.focusedItemIndex]; + this.focusItem(itemToFocus); + } + + // Enter key selects the focused item + if (e.key === 'Enter' && this.focusedItemIndex >= 0) { + const visibleItems = this.getVisibleItems(); + if (visibleItems.length === 0) return; + + const selectedItem = visibleItems[this.focusedItemIndex]; + const link = selectedItem.querySelector('a'); + if (link) { + link.click(); + } + } + }); + }, + + getVisibleItems() { + return Array.from(document.querySelectorAll(contentSelector)) + .filter(item => item.style.display !== 'none'); + }, + + clearItemFocus() { + // Remove focus styling from all items + document.querySelectorAll(`${contentSelector}.keyboard-focus`).forEach(item => { + item.classList.remove('keyboard-focus'); + }); + }, + + focusItem(item) { + // Add focus styling + item.classList.add('keyboard-focus'); + item.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); + }, + + filterContent(query) { + query = query.toLowerCase(); + let anyResults = false; + let visibleCount = 0; + + // Process all content items + document.querySelectorAll(contentSelector).forEach((item) => { + // Get searchable attributes + const name = (item.getAttribute(config.nameAttribute) || '').toLowerCase(); + const tags = (item.getAttribute(config.tagsAttribute) || '').toLowerCase(); + const category = (item.getAttribute(config.categoryAttribute) || '').toLowerCase(); + + // Check additional attributes if specified + const additionalMatches = config.additionalAttributes.some(attr => { + const value = (item.getAttribute(attr) || '').toLowerCase(); + return value.includes(query); + }); + + const isMatch = query === '' || + name.includes(query) || + tags.includes(query) || + category.includes(query) || + additionalMatches; + + if (isMatch) { + item.style.display = ''; + anyResults = true; + visibleCount++; + } else { + item.style.display = 'none'; + } + }); + + // Update category visibility for homelab page + this.updateCategoryVisibility(query); + + // Update parent containers if needed + this.updateContainerVisibility(query); + this.updateResultsStatus(query, anyResults, visibleCount); + }, + + updateCategoryVisibility(query) { + // Only proceed if we have category sections (homelab page) + const categorySections = document.querySelectorAll('.category-section'); + if (categorySections.length === 0) return; + + // For each category section, check if it has any visible app cards + categorySections.forEach((categorySection) => { + const categoryId = categorySection.getAttribute('data-category'); + const appCards = categorySection.querySelectorAll('.app-card'); + + // Count visible app cards in this category + const visibleApps = Array.from(appCards).filter(card => + card.style.display !== 'none' + ).length; + + // If no visible apps and we're searching, hide the category + if (query !== '' && visibleApps === 0) { + categorySection.style.display = 'none'; + } else { + categorySection.style.display = ''; + } + }); + }, + + updateContainerVisibility(query) { + // If there are container elements that should be hidden when empty + const containers = document.querySelectorAll('.content-container'); + if (containers.length > 0) { + containers.forEach((container) => { + const hasVisibleItems = Array.from( + container.querySelectorAll(contentSelector) + ).some((item) => item.style.display !== 'none'); + + if (query === '' || hasVisibleItems) { + container.style.display = ''; + } else { + container.style.display = 'none'; + } + }); + } + }, + + updateResultsStatus(query, anyResults, count) { + // Update results status + this.hasResults = query === '' || anyResults; + this.visibleCount = count; + + // Update screen reader status + const statusEl = document.getElementById('search-status'); + if (statusEl) { + if (query === '') { + statusEl.textContent = config.allItemsMessage; + this.visibleCount = document.querySelectorAll(contentSelector).length; + } else if (this.hasResults) { + statusEl.textContent = config.resultCountMessage(count); + } else { + statusEl.textContent = config.noResultsMessage; + } + } + } + }; +} + +// Register Alpine.js data components when Alpine is loaded +document.addEventListener('alpine:init', () => { + // Homelab search + window.Alpine.data('searchServices', () => { + const baseSearch = initializeSearch('.app-card', { + nameAttribute: 'data-app-name', + tagsAttribute: 'data-app-tags', + categoryAttribute: 'data-app-category', + noResultsMessage: 'No services found', + allItemsMessage: 'Showing all services', + resultCountMessage: (count) => `Found ${count} services`, + itemLabel: 'services' + }); + + // Add icon size slider functionality + return { + ...baseSearch, + iconSizeValue: 2, // Slider value: 1=small, 2=medium, 3=large + iconSize: 'medium', // small, medium, large + viewMode: 'grid', // grid or list + displayMode: 'both', // both, image, or name + debounceTimeout: null, // For debouncing slider changes + + init() { + baseSearch.init.call(this); + + // Apply initial icon size, view mode, and display mode + this.applyIconSize(); + this.applyViewMode(); + this.applyDisplayMode(); + }, + + // Icon size methods + setIconSize(size) { + if (typeof size === 'string') { + // Handle legacy string values (small, medium, large) + this.iconSize = size; + this.iconSizeValue = size === 'small' ? 1 : size === 'medium' ? 2 : 3; + } else { + // Handle slider numeric values + this.iconSizeValue = parseFloat(size); + + // Map slider value to size name + if (this.iconSizeValue <= 1.33) { + this.iconSize = 'small'; + } else if (this.iconSizeValue <= 2.33) { + this.iconSize = 'medium'; + } else { + this.iconSize = 'large'; + } + } + + this.applyIconSize(); + }, + + // Handle slider input with debounce + handleSliderChange(event) { + const value = event.target.value; + + // Clear any existing timeout + if (this.debounceTimeout) { + clearTimeout(this.debounceTimeout); + } + + // Set a new timeout + this.debounceTimeout = setTimeout(() => { + this.setIconSize(value); + }, 50); // 50ms debounce + }, + + applyIconSize() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing size classes + appList.classList.remove('icon-size-small', 'icon-size-medium', 'icon-size-large'); + + // Add the new size class + appList.classList.add(`icon-size-${this.iconSize}`); + + // Apply custom CSS variable for fine-grained control + appList.style.setProperty('--icon-scale', this.iconSizeValue); + }, + + // View mode methods + toggleViewMode() { + this.viewMode = this.viewMode === 'grid' ? 'list' : 'grid'; + this.applyViewMode(); + }, + + setViewMode(mode) { + this.viewMode = mode; + this.applyViewMode(); + }, + + applyViewMode() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing view mode classes + appList.classList.remove('view-mode-grid', 'view-mode-list'); + + // Add the new view mode class + appList.classList.add(`view-mode-${this.viewMode}`); + + // Update all category sections + document.querySelectorAll('.category-section').forEach(section => { + const gridContainer = section.querySelector('.grid'); + if (gridContainer) { + // Update grid classes based on view mode + if (this.viewMode === 'grid') { + gridContainer.classList.remove('grid-cols-1'); + gridContainer.classList.add('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + } else { + gridContainer.classList.remove('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + gridContainer.classList.add('grid-cols-1'); + } + } + }); + }, + + // Display mode methods + setDisplayMode(mode) { + this.displayMode = mode; + this.applyDisplayMode(); + }, + + applyDisplayMode() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing display mode classes + appList.classList.remove('display-both', 'display-image-only', 'display-name-only'); + + // Add the new display mode class + if (this.displayMode === 'image') { + appList.classList.add('display-image-only'); + } else if (this.displayMode === 'name') { + appList.classList.add('display-name-only'); + } else { + appList.classList.add('display-both'); + } + + // Update all category sections + document.querySelectorAll('.category-section').forEach(section => { + const gridContainer = section.querySelector('.grid'); + if (gridContainer) { + // Update grid classes based on view mode + if (this.viewMode === 'grid') { + gridContainer.classList.remove('grid-cols-1'); + gridContainer.classList.add('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + } else { + gridContainer.classList.remove('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + gridContainer.classList.add('grid-cols-1'); + } + } + }); + } + }; + }); + + // Blog search + window.Alpine.data('searchArticles', () => { + return initializeSearch('.article-item', { + nameAttribute: 'data-title', + tagsAttribute: 'data-tags', + additionalAttributes: ['data-description'], + noResultsMessage: 'No articles found', + allItemsMessage: 'Showing all articles', + resultCountMessage: (count) => `Found ${count} articles`, + itemLabel: 'articles' + }); + }); + + // Projects search + window.Alpine.data('searchProjects', () => { + return initializeSearch('.project-item', { + nameAttribute: 'data-title', + tagsAttribute: 'data-tags', + additionalAttributes: ['data-description', 'data-github', 'data-live'], + noResultsMessage: 'No projects found', + allItemsMessage: 'Showing all projects', + resultCountMessage: (count) => `Found ${count} projects`, + itemLabel: 'projects' + }); + }); +}); +

Well, this is awkward

404 - Page not found

It seems that this page does not exist. If you want to return to safety, click here to go home. -

\ No newline at end of file diff --git a/dist/_astro/html-intro.CpHT9-yV.css b/dist/_astro/html-intro.CpHT9-yV.css deleted file mode 100644 index 81710c6..0000000 --- a/dist/_astro/html-intro.CpHT9-yV.css +++ /dev/null @@ -1 +0,0 @@ -/*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-leading:initial;--tw-font-weight:initial;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-outline-style:solid}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:"IBM Plex Mono",ui-monospace,monospace;--color-neutral-100:oklch(97% 0 0);--color-neutral-900:oklch(20.5% 0 0);--spacing:.25rem;--container-2xl:42rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-medium:500;--font-weight-semibold:600;--leading-tight:1.25;--leading-normal:1.5;--leading-loose:2;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--font-display:"press-start-2p",ui-monospace,monospace;--color-zag-dark:#282828;--color-zag-light:#ebdbb2;--color-zag-dark-muted:#928374;--color-zag-light-muted:#504945;--color-zag-button-primary:#b8bb26;--color-zag-button-secondary:#a89984;--color-zag-button-red:#fb4934;--color-zag-key:#fb4934;--color-zag-operator:#fe8019;--color-zag-value:#d3869b;--color-zag-type:#fabd2f;--color-zag-function:#b8bb26;--color-zag-string:#8ec07c;--color-zag-special:#83a598}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--zag-stroke:2px;--zag-offset:6px;--zag-transition-duration:.15s;--zag-transition-timing-function:ease-in-out}@media (prefers-reduced-motion:no-preference){.zag-transition{transition:background-color var(--zag-transition-duration)var(--zag-transition-timing-function),color var(--zag-transition-duration)var(--zag-transition-timing-function),fill var(--zag-transition-duration)var(--zag-transition-timing-function),border-color var(--zag-transition-duration)var(--zag-transition-timing-function),transform var(--zag-transition-duration)var(--zag-transition-timing-function)}}.zag-bg{background-color:var(--color-zag-light)}:where(.dark,.dark *) .zag-bg,.-zag-bg{background-color:var(--color-zag-dark)}:where(.dark,.dark *) .-zag-bg{background-color:var(--color-zag-light)}.zag-text{color:var(--color-zag-dark)}:where(.dark,.dark *) .zag-text,.-zag-text{color:var(--color-zag-light)}:where(.dark,.dark *) .-zag-text{color:var(--color-zag-dark)}.zag-muted{color:var(--color-zag-dark-muted)}:where(.dark,.dark *) .zag-muted{color:var(--color-zag-light-muted)}.zag-fill{fill:var(--color-zag-dark)}.zag-fill:where(.dark,.dark *){fill:var(--color-zag-light)}.zag-text-muted{color:var(--color-zag-dark-muted)}.zag-text-muted:where(.dark,.dark *){color:var(--color-zag-light-muted)}.zag-border-b{border-bottom:var(--zag-stroke)solid;border-color:var(--color-zag-dark)}.zag-border-b:where(.dark,.dark *){border-color:var(--color-zag-light)}.zag-offset{text-underline-offset:var(--zag-offset)}.opsz{font-variation-settings:"opsz" 72}.zag-button-primary{background-color:var(--color-zag-button-primary);color:var(--color-zag-dark)}.zag-button-secondary{background-color:var(--color-zag-button-secondary);color:var(--color-zag-dark)}.zag-button-red{background-color:var(--color-zag-button-red);color:var(--color-zag-dark)}.zag-special-text{color:var(--color-zag-special)}.zag-key{color:var(--color-zag-key)}.zag-operator{color:var(--color-zag-operator)}.zag-value{color:var(--color-zag-value)}.zag-type{color:var(--color-zag-type)}.zag-function{color:var(--color-zag-function)}.zag-string{color:var(--color-zag-string)}.zag-special{color:var(--color-zag-special)}}@layer components;@layer utilities{.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-full{grid-column:1/-1}.mx-auto{margin-inline:auto}.my-8{margin-block:calc(var(--spacing)*8)}.my-16{margin-block:calc(var(--spacing)*16)}.prose{color:var(--tw-prose-body);--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:NaN NaN NaN;--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);max-width:65ch;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px rgb(var(--tw-prose-kbd-shadows)/10%);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-4{margin-top:calc(var(--spacing)*4)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-16{margin-top:calc(var(--spacing)*16)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.contents{display:contents}.flex{display:flex}.grid{display:grid}.h-6{height:calc(var(--spacing)*6)}.h-16{height:calc(var(--spacing)*16)}.h-40{height:calc(var(--spacing)*40)}.h-auto{height:auto}.w-6{width:calc(var(--spacing)*6)}.w-16{width:calc(var(--spacing)*16)}.w-40{width:calc(var(--spacing)*40)}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-40{max-width:calc(var(--spacing)*40)}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.resize{resize:both}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-8{gap:calc(var(--spacing)*8)}.rounded-full{border-radius:3.40282e38px}.border-none{--tw-border-style:none;border-style:none}.bg-none{background-image:none}.fill-neutral-900{fill:var(--color-neutral-900)}.fill-transparent{fill:#0000}.p-4{padding:calc(var(--spacing)*4)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-4{padding-inline:calc(var(--spacing)*4)}.py-1{padding-block:calc(var(--spacing)*1)}.py-4{padding-block:calc(var(--spacing)*4)}.pt-8{padding-top:calc(var(--spacing)*8)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-16{padding-bottom:calc(var(--spacing)*16)}.text-center{text-align:center}.font-display{font-family:var(--font-display)}.font-mono{font-family:var(--font-mono)}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.leading-loose{--tw-leading:var(--leading-loose);line-height:var(--leading-loose)}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.underline{text-decoration-line:underline}.underline-offset-4{text-underline-offset:4px}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}@media (hover:hover){.hover\:scale-105:hover{--tw-scale-x:105%;--tw-scale-y:105%;--tw-scale-z:105%;scale:var(--tw-scale-x)var(--tw-scale-y)}.hover\:opacity-90:hover{opacity:.9}}.focus\:outline-2:focus{outline-style:var(--tw-outline-style);outline-width:2px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-zag-dark:focus{outline-color:var(--color-zag-dark)}@media (min-width:40rem){.sm\:relative{position:relative}.sm\:mt-0{margin-top:calc(var(--spacing)*0)}.sm\:hidden{display:none}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:flex-nowrap{flex-wrap:nowrap}.sm\:items-center{align-items:center}.sm\:justify-between{justify-content:space-between}.sm\:border-none{--tw-border-style:none;border-style:none}.sm\:px-0{padding-inline:calc(var(--spacing)*0)}.sm\:px-4{padding-inline:calc(var(--spacing)*4)}.sm\:pt-4{padding-top:calc(var(--spacing)*4)}.sm\:text-left{text-align:left}.sm\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.sm\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.sm\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.sm\:leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}}@media (min-width:64rem){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.dark\:fill-neutral-100:where(.dark,.dark *){fill:var(--color-neutral-100)}.dark\:fill-transparent:where(.dark,.dark *){fill:#0000}.dark\:focus\:outline-zag-light:where(.dark,.dark *):focus{outline-color:var(--color-zag-light)}.prose-headings\:font-mono :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:var(--font-mono)}.prose-headings\:text-\[var\(--color-zag-dark\)\] :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-headings\:dark\:text-\[var\(--color-zag-light\)\] :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *){color:var(--color-zag-light)}.prose-h1\:text-2xl :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-h2\:text-2xl :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.prose-h3\:text-xl :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.prose-h4\:text-lg :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.prose-h5\:text-base :where(h5):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.prose-h6\:text-sm :where(h6):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.prose-p\:text-justify :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:justify}.prose-p\:text-\[var\(--color-zag-dark\)\] :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-p\:dark\:text-\[var\(--color-zag-light\)\] :where(p):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *){color:var(--color-zag-light)}.prose-a\:text-\[var\(--color-zag-dark\)\] :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-a\:underline-offset-4 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){text-underline-offset:4px}.prose-a\:focus\:outline-2 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-style:var(--tw-outline-style);outline-width:2px}.prose-a\:focus\:outline-offset-2 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-offset:2px}.prose-a\:focus\:outline-zag-dark :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-color:var(--color-zag-dark)}.dark\:prose-a\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-a\:dark\:focus\:outline-zag-light :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *):focus{outline-color:var(--color-zag-light)}.prose-strong\:text-\[var\(--color-zag-dark\)\] :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-strong\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-code\:text-\[var\(--color-zag-dark\)\] :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-code\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) ::marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) ::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *))::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::-webkit-details-marker{color:var(--color-zag-light)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) ::marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) ::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *))::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::-webkit-details-marker{color:var(--color-zag-light)}.prose-li\:text-\[var\(--color-zag-dark\)\] :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-li\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-img\:rounded-none :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:0}}@font-face{font-family:Literata Variable;font-style:normal;font-display:swap;font-weight:200 900;src:url(https://cdn.jsdelivr.net/fontsource/fonts/literata:vf@latest/latin-opsz-normal.woff2)format("woff2-variations");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:press-start-2p;font-style:normal;font-display:swap;font-weight:400;src:url(https://cdn.jsdelivr.net/fontsource/fonts/press-start-2p@latest/latin-400-normal.woff2)format("woff2"),url(https://cdn.jsdelivr.net/fontsource/fonts/press-start-2p@latest/latin-400-normal.woff)format("woff");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid} diff --git a/dist/_astro/index.C9I8Lf1I.css b/dist/_astro/index.C9I8Lf1I.css new file mode 100644 index 0000000..eb42dec --- /dev/null +++ b/dist/_astro/index.C9I8Lf1I.css @@ -0,0 +1 @@ +.size-selector[data-astro-cid-hsngm7cm],.view-selector[data-astro-cid-hsngm7cm],.display-selector[data-astro-cid-hsngm7cm]{box-shadow:2px 2px 0 var(--color-zag-dark);:where(.dark,.dark *) &{box-shadow:2px 2px 0 var(--color-zag-light)}}.active-size[data-astro-cid-hsngm7cm],.active-view[data-astro-cid-hsngm7cm],.active-display[data-astro-cid-hsngm7cm]{color:var(--color-zag-dark);background-color:var(--color-zag-light);transform:translateY(-1px);box-shadow:0 2px 4px #0000001a;:where(.dark,.dark *) &{color:var(--color-zag-dark)}}.inactive-size[data-astro-cid-hsngm7cm],.inactive-view[data-astro-cid-hsngm7cm],.inactive-display[data-astro-cid-hsngm7cm]{color:var(--color-zag-dark-muted);:where(.dark,.dark *) &{color:var(--color-zag-light-muted)}}.inactive-size[data-astro-cid-hsngm7cm]:hover,.inactive-view[data-astro-cid-hsngm7cm]:hover,.inactive-display[data-astro-cid-hsngm7cm]:hover{background-color:var(--color-zag-light-muted);color:var(--color-zag-dark);:where(.dark,.dark *) &{background-color:var(--color-zag-dark-muted);color:var(--color-zag-light)}}.service-card[data-astro-cid-weny5x7l]{flex-direction:column;justify-content:center}.view-mode-list .service-card[data-astro-cid-weny5x7l]{flex-direction:row;justify-content:flex-start;padding:.5rem;border-radius:.375rem}.view-mode-list .service-name[data-astro-cid-weny5x7l]{margin-top:0;margin-left:1rem;text-align:left}.service-icon-container[data-astro-cid-weny5x7l],.service-name[data-astro-cid-weny5x7l]{display:block}.display-image-only .service-name[data-astro-cid-weny5x7l]{display:none}.display-image-only .service-icon-container[data-astro-cid-weny5x7l]{display:flex;justify-content:center;align-items:center}.display-name-only .service-icon-container[data-astro-cid-weny5x7l]{display:none}.display-name-only .service-name[data-astro-cid-weny5x7l]{display:block;margin-top:0;font-size:1.1rem}.view-mode-list.display-name-only .service-card[data-astro-cid-weny5x7l]{padding:.75rem 1rem}.view-mode-list.display-image-only .service-card[data-astro-cid-weny5x7l]{justify-content:center;padding:.5rem}#app-list{--icon-scale: 2;--icon-base-size: 1rem}.service-icon[data-astro-cid-weny5x7l]{width:calc(var(--icon-base-size) * var(--icon-scale) * 2);height:calc(var(--icon-base-size) * var(--icon-scale) * 2)}.icon-size-small .service-icon[data-astro-cid-weny5x7l]{width:2rem;height:2rem}.icon-size-medium .service-icon[data-astro-cid-weny5x7l]{width:4rem;height:4rem}.icon-size-large .service-icon[data-astro-cid-weny5x7l]{width:6rem;height:6rem}.service-card[data-astro-cid-weny5x7l]{transition:all .3s cubic-bezier(.25,.8,.25,1);box-shadow:0 2px 4px #0000001a;border:2px solid transparent;background-color:var(--color-zag-bg);border-radius:.5rem;overflow:hidden;position:relative;will-change:transform,box-shadow,border-color}.service-card[data-astro-cid-weny5x7l]:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(135deg,transparent 0%,var(--color-zag-accent) 300%);opacity:0;transition:opacity .3s cubic-bezier(.25,.8,.25,1);z-index:-1}.service-card[data-astro-cid-weny5x7l]:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 10px 20px #00000026;border-color:var(--color-zag-accent);background-color:var(--color-zag-bg-hover);z-index:10}.service-card[data-astro-cid-weny5x7l]:hover:before{opacity:.15}.service-card[data-astro-cid-weny5x7l]:active{transform:translateY(-2px) scale(.98);box-shadow:0 5px 10px #0000001a;transition:all .1s cubic-bezier(.25,.8,.25,1)}.service-icon-container[data-astro-cid-weny5x7l]{position:relative;transition:transform .3s cubic-bezier(.25,.8,.25,1)}.service-icon-background[data-astro-cid-weny5x7l]{background:radial-gradient(circle,var(--color-zag-accent) 0%,transparent 70%);transform:scale(.8);transition:all .3s cubic-bezier(.25,.8,.25,1)}.service-card[data-astro-cid-weny5x7l]:hover .service-icon-container[data-astro-cid-weny5x7l]{transform:translateY(-2px)}.service-card[data-astro-cid-weny5x7l]:hover .service-icon[data-astro-cid-weny5x7l]{transform:scale(1.1) rotate(2deg);filter:drop-shadow(0 4px 6px rgba(0,0,0,.1))}.service-card[data-astro-cid-weny5x7l]:hover .service-icon-background[data-astro-cid-weny5x7l]{opacity:.2;transform:scale(1.5)}.service-card[data-astro-cid-weny5x7l]:hover .service-name[data-astro-cid-weny5x7l]{transform:translateY(2px);font-weight:500}.view-mode-list .service-card[data-astro-cid-weny5x7l]:hover{transform:translate(4px) scale(1.01)}.view-mode-list .service-card[data-astro-cid-weny5x7l]:active{transform:translate(2px) scale(.99)}.dark .service-card[data-astro-cid-weny5x7l]{box-shadow:0 2px 4px #0000004d}.dark .service-card[data-astro-cid-weny5x7l]:hover{box-shadow:0 10px 20px #0006}.print-qr-code[data-astro-cid-weny5x7l]{display:none}@media print{.service-card[data-astro-cid-weny5x7l]{break-inside:avoid;page-break-inside:avoid;box-shadow:none!important;border:1px solid #ddd!important;transform:none!important;background:#fff!important;color:#000!important;display:flex;flex-direction:row!important;align-items:center;padding:1rem;margin-bottom:.5rem}.service-icon[data-astro-cid-weny5x7l]{width:2rem!important;height:2rem!important;margin-right:1rem}.service-name[data-astro-cid-weny5x7l]{margin:0!important;font-weight:700!important;font-size:1rem!important;flex:1;text-align:left!important}.print-qr-code[data-astro-cid-weny5x7l]{display:flex;flex-direction:column;align-items:center;margin-left:auto;width:4rem}.qr-placeholder[data-astro-cid-weny5x7l]{width:4rem;height:4rem;border:1px solid #ddd;margin-bottom:.25rem;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1' d='M4 4h4v4H4zM16 4h4v4h-4zM4 16h4v4H4zM12 12h4v4h-4zM8 8h8v8H8z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;background-size:contain}.qr-url[data-astro-cid-weny5x7l]{font-size:.6rem;word-break:break-all;text-align:center;max-width:4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.scroll-reveal[data-astro-cid-y7gqhcva]{opacity:0;will-change:transform,opacity}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=fade-up]{transform:translateY(30px)}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=fade-down]{transform:translateY(-30px)}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=fade-left]{transform:translate(30px)}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=fade-right]{transform:translate(-30px)}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=zoom-in]{transform:scale(.9)}.scroll-reveal[data-astro-cid-y7gqhcva][data-animation=zoom-out]{transform:scale(1.1)}.scroll-reveal[data-astro-cid-y7gqhcva].revealed{opacity:1;transform:translate(0) scale(1)}@media (prefers-reduced-motion: reduce){.scroll-reveal[data-astro-cid-y7gqhcva]{transition:none!important;opacity:1!important;transform:none!important}}.category-toggle[data-astro-cid-7vdpbefz]{padding:.5rem;border-radius:.375rem;transition:all .3s cubic-bezier(.25,.8,.25,1);position:relative}.category-toggle[data-astro-cid-7vdpbefz]:hover{padding-left:1rem}.category-toggle[data-astro-cid-7vdpbefz]:active{transform:scale(.98)}.category-bg[data-astro-cid-7vdpbefz]{background:var(--color-zag-accent);border-radius:.375rem}.category-title[data-astro-cid-7vdpbefz]{transition:all .3s cubic-bezier(.25,.8,.25,1);display:inline-block}.category-toggle[data-astro-cid-7vdpbefz]:hover .category-title[data-astro-cid-7vdpbefz]{transform:translate(.25rem)}.category-toggle[data-astro-cid-7vdpbefz]:focus-visible{outline:2px solid var(--color-zag-accent-dark);outline-offset:2px}.service-card-skeleton[data-astro-cid-5k2ppger]{height:100%;width:100%}@media print{header,footer,.search-container,.style-controls,button[aria-controls]{display:none!important}[x-show=open]{display:block!important}.grid{display:block!important;columns:2!important;column-gap:1.5rem!important}.category-section{break-inside:avoid;page-break-inside:avoid;margin-bottom:1.5rem!important;border-bottom:1px solid #ddd;padding-bottom:1rem}.category-section>button{font-size:1.5rem!important;margin-bottom:1rem!important;border-bottom:2px solid #000;padding-bottom:.5rem}.category-section svg{display:none!important}@page{margin:1cm}body:after{content:"Printed from justin.deal/homelab on " attr(data-print-date);display:block;text-align:center;font-size:.8rem;margin-top:2rem;font-style:italic}body,html{background:#fff!important;color:#000!important}body:before{content:"Homelab Services Directory";display:block;text-align:center;font-size:1.5rem;font-weight:700;margin:1rem 0 2rem;border-bottom:2px solid #000;padding-bottom:.5rem}*{animation:none!important;transition:none!important}} diff --git a/dist/_astro/jellyfin-at-home.z5IOlzDh.css b/dist/_astro/jellyfin-at-home.z5IOlzDh.css new file mode 100644 index 0000000..24a7fe8 --- /dev/null +++ b/dist/_astro/jellyfin-at-home.z5IOlzDh.css @@ -0,0 +1 @@ +.theme-toggle-container[data-astro-cid-x3pjskd3]{position:relative}.theme-toggle-button[data-astro-cid-x3pjskd3]{background:none;border:1px solid transparent;cursor:pointer;padding:6px;border-radius:4px;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.theme-toggle-button[data-astro-cid-x3pjskd3]:hover{background-color:#8080801a;border-color:#80808033}.theme-icon[data-astro-cid-x3pjskd3]{width:24px;height:24px}.theme-dropdown[data-astro-cid-x3pjskd3]{position:absolute;top:100%;right:0;margin-top:8px;background-color:var(--color-zag-light);border-radius:8px;box-shadow:0 4px 12px #0000001a;width:200px;z-index:50;overflow:hidden}.dark .theme-dropdown[data-astro-cid-x3pjskd3]{background-color:var(--color-zag-dark);box-shadow:0 4px 12px #0000004d}.theme-dropdown-content[data-astro-cid-x3pjskd3]{padding:8px}.theme-option[data-astro-cid-x3pjskd3]{display:flex;align-items:center;width:100%;padding:10px 12px;border:none;background:none;text-align:left;cursor:pointer;border-radius:6px;transition:background-color .2s ease;color:var(--color-zag-dark)}.dark .theme-option[data-astro-cid-x3pjskd3]{color:var(--color-zag-light)}.theme-option[data-astro-cid-x3pjskd3]:hover{background-color:#8080801a}.theme-option-icon[data-astro-cid-x3pjskd3]{margin-right:12px;color:currentColor}[data-astro-cid-x3pjskd3][x-cloak]{display:none!important}.loading-spinner[data-astro-cid-ypbmo55r]{position:relative;display:inline-block}.spinner-ring[data-astro-cid-ypbmo55r]{position:absolute;top:0;left:0;width:100%;height:100%;border:2px solid transparent;border-top-color:var(--spinner-color, currentColor);border-radius:50%;animation:spin 1s linear infinite}.spinner-ring[data-astro-cid-ypbmo55r]:nth-child(2){animation-delay:-.3s}.spinner-ring[data-astro-cid-ypbmo55r]:nth-child(3){animation-delay:-.6s}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.loading-dots[data-astro-cid-ypbmo55r]{display:flex;align-items:center;justify-content:center;gap:.25rem}.loading-dots[data-astro-cid-ypbmo55r] .dot[data-astro-cid-ypbmo55r]{width:25%;height:25%;background-color:var(--dots-color, currentColor);border-radius:50%;animation:dotBounce 1.4s infinite ease-in-out both}.loading-dots[data-astro-cid-ypbmo55r] .dot[data-astro-cid-ypbmo55r]:nth-child(1){animation-delay:-.32s}.loading-dots[data-astro-cid-ypbmo55r] .dot[data-astro-cid-ypbmo55r]:nth-child(2){animation-delay:-.16s}@keyframes dotBounce{0%,80%,to{transform:scale(0)}40%{transform:scale(1)}}.loading-pulse[data-astro-cid-ypbmo55r]{background-color:var(--pulse-color, currentColor);border-radius:50%;animation:pulse 1.5s ease-in-out infinite}@keyframes pulse{0%{transform:scale(.8);opacity:.5}50%{transform:scale(1);opacity:1}to{transform:scale(.8);opacity:.5}}@media (prefers-reduced-motion: reduce){.spinner-ring[data-astro-cid-ypbmo55r],.loading-dots[data-astro-cid-ypbmo55r] .dot[data-astro-cid-ypbmo55r],.loading-pulse[data-astro-cid-ypbmo55r]{animation:none}}.loading-overlay[data-astro-cid-veun55td]{opacity:0;visibility:hidden;transition:opacity .3s ease,visibility .3s ease}.loading-overlay[data-astro-cid-veun55td].visible{opacity:1;visibility:visible}.message-animate[data-astro-cid-veun55td]{animation:fadeSlideUp .6s ease-out both}.message-animate-delay[data-astro-cid-veun55td]{animation:fadeSlideUp .6s ease-out .2s both}@keyframes fadeSlideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion: reduce){.spinner[data-astro-cid-veun55td]{animation-duration:3s}}.theme-transition-overlay[data-astro-cid-dewpavae]{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:9999;opacity:0;transition:opacity .5s ease}.theme-transition-overlay[data-astro-cid-dewpavae].light-to-dark{background:radial-gradient(circle at var(--x) var(--y),rgba(40,40,40,.8) 0%,rgba(40,40,40,0) 50%)}.theme-transition-overlay[data-astro-cid-dewpavae].dark-to-light{background:radial-gradient(circle at var(--x) var(--y),rgba(235,219,178,.8) 0%,rgba(235,219,178,0) 50%)}.theme-transition-overlay[data-astro-cid-dewpavae].active{opacity:1}.theme-background[data-astro-cid-nzjwcpgp]{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none;z-index:-1;overflow:hidden}.light-pattern[data-astro-cid-nzjwcpgp]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.03;transition:opacity .5s ease;background-color:#ebdbb203;background-image:linear-gradient(to right,rgba(60,56,54,.1) 1px,transparent 1px),linear-gradient(to bottom,rgba(60,56,54,.1) 1px,transparent 1px),linear-gradient(45deg,rgba(214,93,14,.1) 25%,transparent 25%),radial-gradient(rgba(184,187,38,.2) 2px,transparent 2px);background-size:20px 20px,20px 20px,100px 100px,40px 40px;background-position:0 0,0 0,0 0,20px 20px}.dark-pattern[data-astro-cid-nzjwcpgp]{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transition:opacity .5s ease;background-color:#28282803;background-image:linear-gradient(to right,rgba(235,219,178,.1) 1px,transparent 1px),linear-gradient(to bottom,rgba(235,219,178,.1) 1px,transparent 1px),linear-gradient(45deg,rgba(254,128,25,.1) 25%,transparent 25%),radial-gradient(rgba(184,187,38,.2) 2px,transparent 2px);background-size:20px 20px,20px 20px,100px 100px,40px 40px;background-position:0 0,0 0,0 0,20px 20px}.dark .light-pattern[data-astro-cid-nzjwcpgp]{opacity:0}.dark .dark-pattern[data-astro-cid-nzjwcpgp]{opacity:.05}/*! tailwindcss v4.1.4 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;--tw-ease:initial}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:"IBM Plex Mono",ui-monospace,monospace;--color-red-500:oklch(63.7% .237 25.331);--color-green-500:oklch(72.3% .219 149.579);--color-neutral-100:oklch(97% 0 0);--color-neutral-900:oklch(20.5% 0 0);--spacing:.25rem;--container-2xl:42rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75/1.125);--text-xl:1.25rem;--text-xl--line-height:calc(1.75/1.25);--text-2xl:1.5rem;--text-2xl--line-height:calc(2/1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl:2.25rem;--text-4xl--line-height:calc(2.5/2.25);--font-weight-medium:500;--font-weight-semibold:600;--leading-tight:1.25;--leading-normal:1.5;--leading-loose:2;--radius-md:.375rem;--radius-lg:.5rem;--ease-in:cubic-bezier(.4,0,1,1);--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--font-display:"press-start-2p",ui-monospace,monospace;--color-zag-dark:#282828;--color-zag-light:#ebdbb2;--color-zag-dark-muted:#928374;--color-zag-light-muted:#504945;--color-zag-accent-dark:#fe8019;--color-zag-bg:#ebdbb2cc;--color-zag-bg-hover:#ebdbb2;--color-zag-accent:#b8bb2680;--color-zag-button-primary:#b8bb26;--color-zag-button-secondary:#a89984;--color-zag-button-red:#fb4934;--color-zag-key:#fb4934;--color-zag-operator:#fe8019;--color-zag-value:#d3869b;--color-zag-type:#fabd2f;--color-zag-function:#b8bb26;--color-zag-string:#8ec07c;--color-zag-special:#83a598}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root{--zag-stroke:2px;--zag-offset:6px;--zag-transition-duration:.15s;--zag-transition-timing-function:ease-in-out}.dark{--color-zag-bg:#282828cc;--color-zag-bg-hover:#282828;--color-zag-accent:#fe801980}.zag-interactive{transform-origin:50%;transition:all .2s;position:relative}.zag-interactive:hover{transform:translateY(-2px)}.zag-interactive:active{transform:translateY(0)}.zag-interactive:focus-visible{outline:2px solid var(--color-zag-accent-dark);outline-offset:2px}.zag-button{position:relative;overflow:hidden}.zag-button:after{content:"";opacity:0;background-color:currentColor;width:100%;height:100%;transition:opacity .2s;position:absolute;top:0;left:0}.zag-button:hover:after{opacity:.1}.zag-button:active:after{opacity:.2}.zag-link{position:relative}.zag-link:after{content:"";background-color:currentColor;width:0;height:2px;transition:width .2s;position:absolute;bottom:-2px;left:0}.zag-link:hover:after{width:100%}@media (prefers-reduced-motion:no-preference){.zag-transition{transition:background-color var(--zag-transition-duration)var(--zag-transition-timing-function),color var(--zag-transition-duration)var(--zag-transition-timing-function),fill var(--zag-transition-duration)var(--zag-transition-timing-function),border-color var(--zag-transition-duration)var(--zag-transition-timing-function),transform var(--zag-transition-duration)var(--zag-transition-timing-function),opacity var(--zag-transition-duration)var(--zag-transition-timing-function),box-shadow var(--zag-transition-duration)var(--zag-transition-timing-function)}}@keyframes theme-fade-in{0%{opacity:0}to{opacity:1}}@keyframes theme-slide-up{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes theme-scale-in{0%{opacity:.8;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.theme-animate-fade{animation:.5s cubic-bezier(.4,0,.2,1) forwards theme-fade-in}.theme-animate-slide{animation:.5s cubic-bezier(.4,0,.2,1) forwards theme-slide-up}.theme-animate-scale{animation:.5s cubic-bezier(.4,0,.2,1) forwards theme-scale-in}.zag-bg{background-color:var(--color-zag-light)}:where(.dark,.dark *) .zag-bg,.-zag-bg{background-color:var(--color-zag-dark)}:where(.dark,.dark *) .-zag-bg{background-color:var(--color-zag-light)}.zag-text{color:var(--color-zag-dark)}:where(.dark,.dark *) .zag-text,.-zag-text{color:var(--color-zag-light)}:where(.dark,.dark *) .-zag-text{color:var(--color-zag-dark)}.zag-muted{color:var(--color-zag-dark-muted)}:where(.dark,.dark *) .zag-muted{color:var(--color-zag-light-muted)}.zag-fill{fill:var(--color-zag-dark)}.zag-fill:where(.dark,.dark *){fill:var(--color-zag-light)}.zag-text-muted{color:var(--color-zag-dark-muted)}.zag-text-muted:where(.dark,.dark *){color:var(--color-zag-light-muted)}.zag-border-b{border-bottom:var(--zag-stroke)solid;border-color:var(--color-zag-dark)}.zag-border-b:where(.dark,.dark *){border-color:var(--color-zag-light)}.zag-offset{text-underline-offset:var(--zag-offset)}.opsz{font-variation-settings:"opsz" 72}.zag-button-primary{background-color:var(--color-zag-button-primary);color:var(--color-zag-dark)}.zag-button-secondary{background-color:var(--color-zag-button-secondary);color:var(--color-zag-dark)}.zag-button-red{background-color:var(--color-zag-button-red);color:var(--color-zag-dark)}.zag-special-text{color:var(--color-zag-special)}.zag-key{color:var(--color-zag-key)}.zag-operator{color:var(--color-zag-operator)}.zag-value{color:var(--color-zag-value)}.zag-type{color:var(--color-zag-type)}.zag-function{color:var(--color-zag-function)}.zag-string{color:var(--color-zag-string)}.zag-special{color:var(--color-zag-special)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{inset:calc(var(--spacing)*0)}.inset-x-0{inset-inline:calc(var(--spacing)*0)}.inset-y-0{inset-block:calc(var(--spacing)*0)}.top-0{top:calc(var(--spacing)*0)}.top-1\/2{top:50%}.right-2{right:calc(var(--spacing)*2)}.right-3{right:calc(var(--spacing)*3)}.left-0{left:calc(var(--spacing)*0)}.z-0{z-index:0}.z-10{z-index:10}.z-50{z-index:50}.col-span-full{grid-column:1/-1}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.mx-auto{margin-inline:auto}.my-2{margin-block:calc(var(--spacing)*2)}.my-4{margin-block:calc(var(--spacing)*4)}.my-8{margin-block:calc(var(--spacing)*8)}.my-16{margin-block:calc(var(--spacing)*16)}.prose{color:var(--tw-prose-body);--tw-prose-body:oklch(37.3% .034 259.733);--tw-prose-headings:oklch(21% .034 264.665);--tw-prose-lead:oklch(44.6% .03 256.802);--tw-prose-links:oklch(21% .034 264.665);--tw-prose-bold:oklch(21% .034 264.665);--tw-prose-counters:oklch(55.1% .027 264.364);--tw-prose-bullets:oklch(87.2% .01 258.338);--tw-prose-hr:oklch(92.8% .006 264.531);--tw-prose-quotes:oklch(21% .034 264.665);--tw-prose-quote-borders:oklch(92.8% .006 264.531);--tw-prose-captions:oklch(55.1% .027 264.364);--tw-prose-kbd:oklch(21% .034 264.665);--tw-prose-kbd-shadows:NaN NaN NaN;--tw-prose-code:oklch(21% .034 264.665);--tw-prose-pre-code:oklch(92.8% .006 264.531);--tw-prose-pre-bg:oklch(27.8% .033 256.848);--tw-prose-th-borders:oklch(87.2% .01 258.338);--tw-prose-td-borders:oklch(92.8% .006 264.531);--tw-prose-invert-body:oklch(87.2% .01 258.338);--tw-prose-invert-headings:#fff;--tw-prose-invert-lead:oklch(70.7% .022 261.325);--tw-prose-invert-links:#fff;--tw-prose-invert-bold:#fff;--tw-prose-invert-counters:oklch(70.7% .022 261.325);--tw-prose-invert-bullets:oklch(44.6% .03 256.802);--tw-prose-invert-hr:oklch(37.3% .034 259.733);--tw-prose-invert-quotes:oklch(96.7% .003 264.542);--tw-prose-invert-quote-borders:oklch(37.3% .034 259.733);--tw-prose-invert-captions:oklch(70.7% .022 261.325);--tw-prose-invert-kbd:#fff;--tw-prose-invert-kbd-shadows:255 255 255;--tw-prose-invert-code:#fff;--tw-prose-invert-pre-code:oklch(87.2% .01 258.338);--tw-prose-invert-pre-bg:#00000080;--tw-prose-invert-th-borders:oklch(44.6% .03 256.802);--tw-prose-invert-td-borders:oklch(37.3% .034 259.733);max-width:65ch;font-size:1rem;line-height:1.75}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);margin-top:1.2em;margin-bottom:1.2em;font-size:1.25em;line-height:1.6}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);font-weight:500;text-decoration:underline}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:decimal}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em;padding-inline-start:1.625em;list-style-type:disc}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-counters);font-weight:400}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.25em;font-weight:600}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;padding-inline-start:1em;font-style:italic;font-weight:500}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:0;margin-bottom:.888889em;font-size:2.25em;font-weight:800;line-height:1.11111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:900}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:2em;margin-bottom:1em;font-size:1.5em;font-weight:700;line-height:1.33333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:800}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.6em;margin-bottom:.6em;font-size:1.25em;font-weight:600;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);margin-top:1.5em;margin-bottom:.5em;font-weight:600;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-weight:700}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em;display:block}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows)/10%),0 3px rgb(var(--tw-prose-kbd-shadows)/10%);padding-top:.1875em;padding-inline-end:.375em;padding-bottom:.1875em;border-radius:.3125rem;padding-inline-start:.375em;font-family:inherit;font-size:.875em;font-weight:500}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-size:.875em;font-weight:600}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);padding-top:.857143em;padding-inline-end:1.14286em;padding-bottom:.857143em;border-radius:.375rem;margin-top:1.71429em;margin-bottom:1.71429em;padding-inline-start:1.14286em;font-size:.875em;font-weight:400;line-height:1.71429;overflow-x:auto}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit;background-color:#0000;border-width:0;border-radius:0;padding:0}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before,.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){table-layout:auto;width:100%;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.71429}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);vertical-align:bottom;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em;font-weight:600}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);margin-top:.857143em;font-size:.875em;line-height:1.42857}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)),.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.571429em;padding-inline-end:.571429em;padding-bottom:.571429em;padding-inline-start:.571429em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-2{margin-top:calc(var(--spacing)*2)}.mt-8{margin-top:calc(var(--spacing)*8)}.mt-16{margin-top:calc(var(--spacing)*16)}.-mb-px{margin-bottom:-1px}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.mb-3{margin-bottom:calc(var(--spacing)*3)}.mb-4{margin-bottom:calc(var(--spacing)*4)}.mb-6{margin-bottom:calc(var(--spacing)*6)}.mb-8{margin-bottom:calc(var(--spacing)*8)}.mb-12{margin-bottom:calc(var(--spacing)*12)}.mb-16{margin-bottom:calc(var(--spacing)*16)}.ml-1{margin-left:calc(var(--spacing)*1)}.block{display:block}.contents{display:contents}.flex{display:flex}.grid{display:grid}.hidden{display:none}.aspect-square{aspect-ratio:1}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-8{height:calc(var(--spacing)*8)}.h-12{height:calc(var(--spacing)*12)}.h-16{height:calc(var(--spacing)*16)}.h-40{height:calc(var(--spacing)*40)}.h-auto{height:auto}.h-full{height:100%}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-6{width:calc(var(--spacing)*6)}.w-8{width:calc(var(--spacing)*8)}.w-12{width:calc(var(--spacing)*12)}.w-16{width:calc(var(--spacing)*16)}.w-40{width:calc(var(--spacing)*40)}.w-full{width:100%}.max-w-2xl{max-width:var(--container-2xl)}.max-w-40{max-width:calc(var(--spacing)*40)}.max-w-\[150px\]{max-width:150px}.max-w-\[250px\]{max-width:250px}.flex-shrink-0{flex-shrink:0}.grow{flex-grow:1}.-translate-y-1{--tw-translate-y:calc(var(--spacing)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-4{--tw-translate-y:calc(var(--spacing)*-4);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-0{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-1{--tw-translate-y:calc(var(--spacing)*1);translate:var(--tw-translate-x)var(--tw-translate-y)}.scale-95{--tw-scale-x:95%;--tw-scale-y:95%;--tw-scale-z:95%;scale:var(--tw-scale-x)var(--tw-scale-y)}.scale-100{--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y)}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.resize{resize:both}.list-disc{list-style-type:disc}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing)*1)}.gap-2{gap:calc(var(--spacing)*2)}.gap-3{gap:calc(var(--spacing)*3)}.gap-4{gap:calc(var(--spacing)*4)}.gap-6{gap:calc(var(--spacing)*6)}.gap-8{gap:calc(var(--spacing)*8)}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-2{border-bottom-style:var(--tw-border-style);border-bottom-width:2px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-solid{--tw-border-style:solid;border-style:solid}.border-current{border-color:currentColor}.fill-neutral-900{fill:var(--color-neutral-900)}.fill-transparent{fill:#0000}.object-cover{object-fit:cover}.p-1{padding:calc(var(--spacing)*1)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-4{padding:calc(var(--spacing)*4)}.p-6{padding:calc(var(--spacing)*6)}.p-8{padding:calc(var(--spacing)*8)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-4{padding-block:calc(var(--spacing)*4)}.py-8{padding-block:calc(var(--spacing)*8)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-8{padding-top:calc(var(--spacing)*8)}.pr-8{padding-right:calc(var(--spacing)*8)}.pb-4{padding-bottom:calc(var(--spacing)*4)}.pb-8{padding-bottom:calc(var(--spacing)*8)}.pb-16{padding-bottom:calc(var(--spacing)*16)}.pl-3{padding-left:calc(var(--spacing)*3)}.pl-5{padding-left:calc(var(--spacing)*5)}.pl-9{padding-left:calc(var(--spacing)*9)}.text-center{text-align:center}.text-left{text-align:left}.font-display{font-family:var(--font-display)}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.leading-loose{--tw-leading:var(--leading-loose);line-height:var(--leading-loose)}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.leading-tight{--tw-leading:var(--leading-tight);line-height:var(--leading-tight)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.text-green-500{color:var(--color-green-500)}.text-red-500{color:var(--color-red-500)}.text-zag-accent-dark{color:var(--color-zag-accent-dark)}.text-zag-button-red{color:var(--color-zag-button-red)}.underline{text-decoration-line:underline}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-5{opacity:.05}.opacity-100{opacity:1}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.grayscale{--tw-grayscale:grayscale(100%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-opacity{transition-property:opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.duration-500{--tw-duration:.5s;transition-duration:.5s}.ease-in{--tw-ease:var(--ease-in);transition-timing-function:var(--ease-in)}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}@media (hover:hover){.hover\:grayscale-0:hover{--tw-grayscale:grayscale(0%);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}}.focus\:ring-0:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(0px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-current:focus{--tw-ring-color:currentcolor}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}@media (min-width:40rem){.sm\:relative{position:relative}.sm\:mt-0{margin-top:calc(var(--spacing)*0)}.sm\:hidden{display:none}.sm\:inline{display:inline}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}.sm\:justify-between{justify-content:space-between}.sm\:gap-6{gap:calc(var(--spacing)*6)}.sm\:border-none{--tw-border-style:none;border-style:none}.sm\:px-0{padding-inline:calc(var(--spacing)*0)}.sm\:px-4{padding-inline:calc(var(--spacing)*4)}.sm\:pt-4{padding-top:calc(var(--spacing)*4)}.sm\:text-left{text-align:left}.sm\:text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.sm\:text-4xl{font-size:var(--text-4xl);line-height:var(--tw-leading,var(--text-4xl--line-height))}.sm\:text-xl{font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.sm\:leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}}@media (min-width:48rem){.md\:col-span-1{grid-column:span 1/span 1}.md\:col-span-2{grid-column:span 2/span 2}.md\:mx-0{margin-inline:calc(var(--spacing)*0)}.md\:w-1\/3{width:33.3333%}.md\:w-2\/3{width:66.6667%}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:flex-row{flex-direction:row}}@media (min-width:64rem){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}.dark\:fill-neutral-100:where(.dark,.dark *){fill:var(--color-neutral-100)}.dark\:fill-transparent:where(.dark,.dark *){fill:#0000}.prose-headings\:font-mono :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:var(--font-mono)}.prose-headings\:text-\[var\(--color-zag-dark\)\] :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-headings\:dark\:text-\[var\(--color-zag-light\)\] :where(h1,h2,h3,h4,h5,h6,th):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *){color:var(--color-zag-light)}.prose-h1\:text-2xl :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)),.prose-h2\:text-2xl :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.prose-h3\:text-xl :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-xl);line-height:var(--tw-leading,var(--text-xl--line-height))}.prose-h4\:text-lg :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.prose-h5\:text-base :where(h5):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.prose-h6\:text-sm :where(h6):not(:where([class~=not-prose],[class~=not-prose] *)){font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.prose-p\:text-justify :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:justify}.prose-p\:text-\[var\(--color-zag-dark\)\] :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-p\:dark\:text-\[var\(--color-zag-light\)\] :where(p):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *){color:var(--color-zag-light)}.prose-a\:text-\[var\(--color-zag-dark\)\] :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.prose-a\:underline-offset-4 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){text-underline-offset:4px}.prose-a\:focus\:outline-2 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-style:var(--tw-outline-style);outline-width:2px}.prose-a\:focus\:outline-offset-2 :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-offset:2px}.prose-a\:focus\:outline-zag-dark :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):focus{outline-color:var(--color-zag-dark)}.dark\:prose-a\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-a\:dark\:focus\:outline-zag-light :where(a):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *):focus{outline-color:var(--color-zag-light)}.prose-strong\:text-\[var\(--color-zag-dark\)\] :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-strong\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-code\:text-\[var\(--color-zag-dark\)\] :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-code\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) ::marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)) ::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ol\:marker\:text-\[var\(--color-zag-dark\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *))::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-zag-light)}.prose-ol\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::-webkit-details-marker{color:var(--color-zag-light)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) ::marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) ::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ul\:marker\:text-\[var\(--color-zag-dark\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *))::-webkit-details-marker{color:var(--color-zag-dark)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *) ::-webkit-details-marker{color:var(--color-zag-light)}.prose-ul\:dark\:marker\:text-\[var\(--color-zag-light\)\] :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)):where(.dark,.dark *)::-webkit-details-marker{color:var(--color-zag-light)}.prose-li\:text-\[var\(--color-zag-dark\)\] :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-dark)}.dark\:prose-li\:text-\[var\(--color-zag-light\)\]:where(.dark,.dark *) :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--color-zag-light)}.prose-img\:rounded-none :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){border-radius:0}}html:not(.theme-loaded) body{display:none}html.theme-loaded body{transition:background-color .5s cubic-bezier(.4,0,.2,1),color .5s cubic-bezier(.4,0,.2,1)}.theme-transition-element{transition:background-color .5s cubic-bezier(.4,0,.2,1),color .5s cubic-bezier(.4,0,.2,1),border-color .5s cubic-bezier(.4,0,.2,1),fill .5s cubic-bezier(.4,0,.2,1),stroke .5s cubic-bezier(.4,0,.2,1),opacity .5s cubic-bezier(.4,0,.2,1),box-shadow .5s cubic-bezier(.4,0,.2,1)}html:not(.fonts-loaded) body{font-family:monospace}html.fonts-loaded body{font-family:var(--font-mono);transition:font-family .1s ease-out}[x-cloak]{display:none!important}.keyboard-focus{outline:2px solid var(--color-zag-accent-dark);outline-offset:2px}@font-face{font-family:Literata Variable;font-style:normal;font-display:swap;font-weight:200 900;src:url(https://cdn.jsdelivr.net/fontsource/fonts/literata:vf@latest/latin-opsz-normal.woff2)format("woff2-variations");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:press-start-2p;font-style:normal;font-display:optional;font-weight:400;src:url(https://cdn.jsdelivr.net/fontsource/fonts/press-start-2p@latest/latin-400-normal.woff2)format("woff2"),url(https://cdn.jsdelivr.net/fontsource/fonts/press-start-2p@latest/latin-400-normal.woff)format("woff");unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+304,U+308,U+329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes pulse{50%{opacity:.5}} diff --git a/dist/_astro/pixel_avatar.DvshIuNc_Z1rQ5UN.webp b/dist/_astro/pixel_avatar.DvshIuNc_Z1rQ5UN.webp new file mode 100644 index 0000000..fc01ea5 Binary files /dev/null and b/dist/_astro/pixel_avatar.DvshIuNc_Z1rQ5UN.webp differ diff --git a/dist/about/index.html b/dist/about/index.html index b31a3f9..fa83346 100644 --- a/dist/about/index.html +++ b/dist/about/index.html @@ -1,33 +1,578 @@ - Justin Deal • My personal slice of the internet
Justin Deal

Justin Deal

My personal slice of the internet

+ const config = { ...defaults, ...options }; + + return { + searchQuery: '', + hasResults: true, + visibleCount: 0, + loading: false, // Start with loading state false - the LoadingManager will control this + + init() { + // Initialize the visible count + this.visibleCount = document.querySelectorAll(contentSelector).length; + this.setupWatchers(); + this.setupKeyboardShortcuts(); + + // Handle theme changes + window.addEventListener('theme-changed', () => { + this.filterContent(this.searchQuery); + }); + }, + + setupWatchers() { + this.$watch('searchQuery', (query) => { + // Filter content immediately - no artificial delay + this.filterContent(query); + }); + }, + + setupKeyboardShortcuts() { + // Track the currently focused item index + this.focusedItemIndex = -1; + + document.addEventListener('keydown', (e) => { + // '/' key focuses the search input + if (e.key === '/' && document.activeElement.id !== 'app-search') { + e.preventDefault(); + document.getElementById('app-search').focus(); + } + + // Escape key clears the search + if (e.key === 'Escape' && this.searchQuery !== '') { + this.searchQuery = ''; + document.getElementById('app-search').focus(); + this.focusedItemIndex = -1; + this.clearItemFocus(); + } + + // Arrow key navigation through results + if (this.searchQuery && (e.key === 'ArrowDown' || e.key === 'ArrowUp')) { + e.preventDefault(); + + const visibleItems = this.getVisibleItems(); + if (visibleItems.length === 0) return; + + // Update focused item index + if (e.key === 'ArrowDown') { + this.focusedItemIndex = Math.min(this.focusedItemIndex + 1, visibleItems.length - 1); + } else { + this.focusedItemIndex = Math.max(this.focusedItemIndex - 1, -1); + } + + // Clear previous focus + this.clearItemFocus(); + + // If we're back at -1, focus the search input + if (this.focusedItemIndex === -1) { + document.getElementById('app-search').focus(); + return; + } + + // Focus the new item + const itemToFocus = visibleItems[this.focusedItemIndex]; + this.focusItem(itemToFocus); + } + + // Enter key selects the focused item + if (e.key === 'Enter' && this.focusedItemIndex >= 0) { + const visibleItems = this.getVisibleItems(); + if (visibleItems.length === 0) return; + + const selectedItem = visibleItems[this.focusedItemIndex]; + const link = selectedItem.querySelector('a'); + if (link) { + link.click(); + } + } + }); + }, + + getVisibleItems() { + return Array.from(document.querySelectorAll(contentSelector)) + .filter(item => item.style.display !== 'none'); + }, + + clearItemFocus() { + // Remove focus styling from all items + document.querySelectorAll(`${contentSelector}.keyboard-focus`).forEach(item => { + item.classList.remove('keyboard-focus'); + }); + }, + + focusItem(item) { + // Add focus styling + item.classList.add('keyboard-focus'); + item.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); + }, + + filterContent(query) { + query = query.toLowerCase(); + let anyResults = false; + let visibleCount = 0; + + // Process all content items + document.querySelectorAll(contentSelector).forEach((item) => { + // Get searchable attributes + const name = (item.getAttribute(config.nameAttribute) || '').toLowerCase(); + const tags = (item.getAttribute(config.tagsAttribute) || '').toLowerCase(); + const category = (item.getAttribute(config.categoryAttribute) || '').toLowerCase(); + + // Check additional attributes if specified + const additionalMatches = config.additionalAttributes.some(attr => { + const value = (item.getAttribute(attr) || '').toLowerCase(); + return value.includes(query); + }); + + const isMatch = query === '' || + name.includes(query) || + tags.includes(query) || + category.includes(query) || + additionalMatches; + + if (isMatch) { + item.style.display = ''; + anyResults = true; + visibleCount++; + } else { + item.style.display = 'none'; + } + }); + + // Update category visibility for homelab page + this.updateCategoryVisibility(query); + + // Update parent containers if needed + this.updateContainerVisibility(query); + this.updateResultsStatus(query, anyResults, visibleCount); + }, + + updateCategoryVisibility(query) { + // Only proceed if we have category sections (homelab page) + const categorySections = document.querySelectorAll('.category-section'); + if (categorySections.length === 0) return; + + // For each category section, check if it has any visible app cards + categorySections.forEach((categorySection) => { + const categoryId = categorySection.getAttribute('data-category'); + const appCards = categorySection.querySelectorAll('.app-card'); + + // Count visible app cards in this category + const visibleApps = Array.from(appCards).filter(card => + card.style.display !== 'none' + ).length; + + // If no visible apps and we're searching, hide the category + if (query !== '' && visibleApps === 0) { + categorySection.style.display = 'none'; + } else { + categorySection.style.display = ''; + } + }); + }, + + updateContainerVisibility(query) { + // If there are container elements that should be hidden when empty + const containers = document.querySelectorAll('.content-container'); + if (containers.length > 0) { + containers.forEach((container) => { + const hasVisibleItems = Array.from( + container.querySelectorAll(contentSelector) + ).some((item) => item.style.display !== 'none'); + + if (query === '' || hasVisibleItems) { + container.style.display = ''; + } else { + container.style.display = 'none'; + } + }); + } + }, + + updateResultsStatus(query, anyResults, count) { + // Update results status + this.hasResults = query === '' || anyResults; + this.visibleCount = count; + + // Update screen reader status + const statusEl = document.getElementById('search-status'); + if (statusEl) { + if (query === '') { + statusEl.textContent = config.allItemsMessage; + this.visibleCount = document.querySelectorAll(contentSelector).length; + } else if (this.hasResults) { + statusEl.textContent = config.resultCountMessage(count); + } else { + statusEl.textContent = config.noResultsMessage; + } + } + } + }; +} + +// Register Alpine.js data components when Alpine is loaded +document.addEventListener('alpine:init', () => { + // Homelab search + window.Alpine.data('searchServices', () => { + const baseSearch = initializeSearch('.app-card', { + nameAttribute: 'data-app-name', + tagsAttribute: 'data-app-tags', + categoryAttribute: 'data-app-category', + noResultsMessage: 'No services found', + allItemsMessage: 'Showing all services', + resultCountMessage: (count) => `Found ${count} services`, + itemLabel: 'services' + }); + + // Add icon size slider functionality + return { + ...baseSearch, + iconSizeValue: 2, // Slider value: 1=small, 2=medium, 3=large + iconSize: 'medium', // small, medium, large + viewMode: 'grid', // grid or list + displayMode: 'both', // both, image, or name + debounceTimeout: null, // For debouncing slider changes + + init() { + baseSearch.init.call(this); + + // Apply initial icon size, view mode, and display mode + this.applyIconSize(); + this.applyViewMode(); + this.applyDisplayMode(); + }, + + // Icon size methods + setIconSize(size) { + if (typeof size === 'string') { + // Handle legacy string values (small, medium, large) + this.iconSize = size; + this.iconSizeValue = size === 'small' ? 1 : size === 'medium' ? 2 : 3; + } else { + // Handle slider numeric values + this.iconSizeValue = parseFloat(size); + + // Map slider value to size name + if (this.iconSizeValue <= 1.33) { + this.iconSize = 'small'; + } else if (this.iconSizeValue <= 2.33) { + this.iconSize = 'medium'; + } else { + this.iconSize = 'large'; + } + } + + this.applyIconSize(); + }, + + // Handle slider input with debounce + handleSliderChange(event) { + const value = event.target.value; + + // Clear any existing timeout + if (this.debounceTimeout) { + clearTimeout(this.debounceTimeout); + } + + // Set a new timeout + this.debounceTimeout = setTimeout(() => { + this.setIconSize(value); + }, 50); // 50ms debounce + }, + + applyIconSize() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing size classes + appList.classList.remove('icon-size-small', 'icon-size-medium', 'icon-size-large'); + + // Add the new size class + appList.classList.add(`icon-size-${this.iconSize}`); + + // Apply custom CSS variable for fine-grained control + appList.style.setProperty('--icon-scale', this.iconSizeValue); + }, + + // View mode methods + toggleViewMode() { + this.viewMode = this.viewMode === 'grid' ? 'list' : 'grid'; + this.applyViewMode(); + }, + + setViewMode(mode) { + this.viewMode = mode; + this.applyViewMode(); + }, + + applyViewMode() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing view mode classes + appList.classList.remove('view-mode-grid', 'view-mode-list'); + + // Add the new view mode class + appList.classList.add(`view-mode-${this.viewMode}`); + + // Update all category sections + document.querySelectorAll('.category-section').forEach(section => { + const gridContainer = section.querySelector('.grid'); + if (gridContainer) { + // Update grid classes based on view mode + if (this.viewMode === 'grid') { + gridContainer.classList.remove('grid-cols-1'); + gridContainer.classList.add('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + } else { + gridContainer.classList.remove('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + gridContainer.classList.add('grid-cols-1'); + } + } + }); + }, + + // Display mode methods + setDisplayMode(mode) { + this.displayMode = mode; + this.applyDisplayMode(); + }, + + applyDisplayMode() { + const appList = document.getElementById('app-list'); + if (!appList) return; + + // Remove existing display mode classes + appList.classList.remove('display-both', 'display-image-only', 'display-name-only'); + + // Add the new display mode class + if (this.displayMode === 'image') { + appList.classList.add('display-image-only'); + } else if (this.displayMode === 'name') { + appList.classList.add('display-name-only'); + } else { + appList.classList.add('display-both'); + } + + // Update all category sections + document.querySelectorAll('.category-section').forEach(section => { + const gridContainer = section.querySelector('.grid'); + if (gridContainer) { + // Update grid classes based on view mode + if (this.viewMode === 'grid') { + gridContainer.classList.remove('grid-cols-1'); + gridContainer.classList.add('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + } else { + gridContainer.classList.remove('grid-cols-2', 'sm:grid-cols-3', 'lg:grid-cols-4'); + gridContainer.classList.add('grid-cols-1'); + } + } + }); + } + }; + }); + + // Blog search + window.Alpine.data('searchArticles', () => { + return initializeSearch('.article-item', { + nameAttribute: 'data-title', + tagsAttribute: 'data-tags', + additionalAttributes: ['data-description'], + noResultsMessage: 'No articles found', + allItemsMessage: 'Showing all articles', + resultCountMessage: (count) => `Found ${count} articles`, + itemLabel: 'articles' + }); + }); + + // Projects search + window.Alpine.data('searchProjects', () => { + return initializeSearch('.project-item', { + nameAttribute: 'data-title', + tagsAttribute: 'data-tags', + additionalAttributes: ['data-description', 'data-github', 'data-live'], + noResultsMessage: 'No projects found', + allItemsMessage: 'Showing all projects', + resultCountMessage: (count) => `Found ${count} projects`, + itemLabel: 'projects' + }); + }); +}); + About Justin Deal • My personal slice of the internet

+About Me +

+Software engineer with a passion for cloud computing, sustainability, and high-performance systems. +

Justin Deal

Professional Summary

+I'm a Software Development Engineer at Amazon with expertise in sustainability reporting, ESG systems, and cloud infrastructure. My background spans high-performance computing, data analytics, and full-stack development. +

+With a Master's in Computer Science from Georgia Tech (in progress) and a strong foundation in AI and networking, I combine technical expertise with a passion for creating systems that make a positive impact. +

Work Experience

Amazon

July 2021 - Present

Software Development Engineer II

August 2024 - Present
  • Certified as an Amazon Guardian, acting as a bridge between development team and security engineers
  • Led away team development of on-demand report generation and egress
  • Designed and implemented capabilities for ESG reporting on precomputed data

Software Development Engineer

July 2021 - August 2024
  • Led sustainability reporting tech team for Amazon's 2024 Carbon Footprint report
  • Automated experimental ESG reports in Amazon's sustainability systems
  • Implemented and maintained critical environmental reporting systems
  • Designed and implemented an ESG metadata store for customer report creation
  • Expanded supply chain simulation capabilities for slow-moving items
  • Implemented monitoring and dashboards across various systems

Technical Skills

Java Scala Python TypeScript C/C++ JavaScript SQL x86-64 Assembly

Education

Georgia Institute of Technology

In Progress

Master of Science in Computer Science

Concentration: Computer Systems

Georgia Institute of Technology

May 2021

Bachelor of Science in Computer Science, Minor: Public Policy

Concentrations: Artificial Intelligence, Information and Networking

GPA: 3.60

\ No newline at end of file +

\ No newline at end of file diff --git a/dist/android-chrome-192x192.png b/dist/android-chrome-192x192.png new file mode 100644 index 0000000..02692ea Binary files /dev/null and b/dist/android-chrome-192x192.png differ diff --git a/dist/android-chrome-512x512.png b/dist/android-chrome-512x512.png new file mode 100644 index 0000000..02692ea Binary files /dev/null and b/dist/android-chrome-512x512.png differ diff --git a/dist/blog/html-intro/index.html b/dist/blog/html-intro/index.html deleted file mode 100644 index 15d5c2b..0000000 --- a/dist/blog/html-intro/index.html +++ /dev/null @@ -1,33 +0,0 @@ - No, We Have Netflix at Home • Justin Deal

No, We Have Netflix at Home

Dec 17, 2024 4 min
code html

~Justin Deal

\ No newline at end of file diff --git a/dist/blog/index.html b/dist/blog/index.html index f98520f..d60ddba 100644 --- a/dist/blog/index.html +++ b/dist/blog/index.html @@ -1,33 +1,564 @@ - My Thoughts & Takes • Justin Deal

Articles

code: 1 html: 1
  • No, We Have Netflix at Home

    Dec 17, 2024

    4 min

    How my exasperation at paying for an ever growing number of streaming services led to a deep obsession

    code html