////
///
/// StyleScape Design System
/// ===========================================================================
///
/// Main entry point for the StyleScape SCSS library. This file orchestrates
/// the loading order of all design system components:
///
/// 1. **dev** - Development utilities, banners, and debug tools
/// 2. **functions** - Utility functions for calculations and helpers
/// 3. **variables** - Design tokens and CSS custom properties
/// 4. **mixins** - Reusable style patterns and component builders
/// 5. **classes** - Ready-to-use utility and component classes
/// 6. **maps** - Sass maps for programmatic value lookups
/// 7. **tags** - Base HTML element styles
/// 8. **demo** - Demo and preview styles (development only)
///
/// @group Core
/// @author Scape Agency
/// @link https://scape.style
/// @since 0.1.0 initial release
/// @access public
///
////

// ============================================================================
// Basics
// ============================================================================

@charset "utf-8";
@use "sass:math";
@use "sass:map";

// ============================================================================
// Imports
// ============================================================================

@forward "dev";

@forward "functions" hide px-to-rem, rem-to-px, px-to-em, strip-unit,
    modular-scale, fluid-value, tint, shade, tone;

@forward "variables";

@forward "mixins";

@forward "classes";

@forward "maps";

@forward "tags";

@forward "demo";

// @forward "pkg:icon.gl" with (
//     $icon_dir: "https://unpkg.com/icon.gl@0.0.35/font",
//     $icon-color-default: inherit
// );
