/* Tailwind CSS Directives — diproses oleh Tailwind CLI */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* ============================================================================
   ANSOR KLOJEN HUB — Global Design System (CSS)
   ============================================================================
   File ini berisi semua design tokens, utility classes, dan component styles
   yang digunakan secara konsisten di seluruh halaman Ansor Klojen Hub.
   
   Digunakan bersama dengan Tailwind CSS CDN + Tailwind config.
   
   Sections:
     1. Google Fonts Import
     2. CSS Custom Properties (Design Tokens)
     3. Base / Reset Styles
     4. Material Symbols Baseline
     5. Scrollbar Utilities
     6. Glassmorphism Classes
     7. Glow / Background Effects
     8. Animations & Keyframes
     9. Card & Component Effects
    10. Layout Utilities
    11. Badge & Status Styles
    12. Form Enhancements
    13. Modal & Overlay
   ============================================================================ */


/* ============================================================================
   1. GOOGLE FONTS IMPORT
   ============================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');


/* ============================================================================
   2. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================================
   Unified color palette menggunakan secondary GOLDEN untuk kontras yang lebih baik
   dengan primary GREEN sesuai prinsip Material Design 3.
   ============================================================================ */
:root {
    /* ── Primary (Emerald Green) ────────────────────────── */
    --color-primary:                    #006b3f;
    --color-primary-rgb:                0, 107, 63;
    --color-primary-container:          #008751;
    --color-primary-fixed:              #8df8b7;
    --color-primary-fixed-dim:          #70db9d;
    --color-on-primary:                 #ffffff;
    --color-on-primary-container:       #fdfff9;
    --color-on-primary-fixed:           #002110;
    --color-on-primary-fixed-variant:   #00522f;
    --color-inverse-primary:            #70db9d;
    --color-surface-tint:               #006d40;

    /* ── Secondary (Golden / Amber) ─────────────────────── */
    --color-secondary:                  #785900;
    --color-secondary-rgb:              120, 89, 0;
    --color-secondary-container:        #fdc003;
    --color-secondary-fixed:            #ffdf9e;
    --color-secondary-fixed-dim:        #fabd00;
    --color-on-secondary:               #ffffff;
    --color-on-secondary-container:     #6c5000;
    --color-on-secondary-fixed:         #261a00;
    --color-on-secondary-fixed-variant: #5b4300;

    /* ── Tertiary (Sage Green) ──────────────────────────── */
    --color-tertiary:                   #3d6552;
    --color-tertiary-container:         #567e6a;
    --color-tertiary-fixed:             #c1ecd4;
    --color-tertiary-fixed-dim:         #a5d0b9;
    --color-on-tertiary:                #ffffff;
    --color-on-tertiary-container:      #fdfffb;
    --color-on-tertiary-fixed:          #002114;
    --color-on-tertiary-fixed-variant:  #274e3d;

    /* ── Surface ────────────────────────────────────────── */
    --color-surface:                    #f8f9fa;
    --color-surface-bright:             #f8f9fa;
    --color-surface-dim:                #d9dadb;
    --color-surface-variant:            #e1e3e4;
    --color-surface-container:          #edeeef;
    --color-surface-container-high:     #e7e8e9;
    --color-surface-container-highest:  #e1e3e4;
    --color-surface-container-low:      #f3f4f5;
    --color-surface-container-lowest:   #ffffff;
    --color-on-surface:                 #191c1d;
    --color-on-surface-variant:         #3e4a41;
    --color-inverse-surface:            #2e3132;
    --color-inverse-on-surface:         #f0f1f2;
    --color-background:                 #f8f9fa;
    --color-on-background:              #191c1d;

    /* ── Semantic ───────────────────────────────────────── */
    --color-error:                      #ba1a1a;
    --color-error-container:            #ffdad6;
    --color-on-error:                   #ffffff;
    --color-on-error-container:         #93000a;
    --color-outline:                    #6e7a70;
    --color-outline-variant:            #bdcabe;

    /* ── Typography ─────────────────────────────────────── */
    --font-display:     'Montserrat', sans-serif;
    --font-headline:    'Montserrat', sans-serif;
    --font-body:        'Inter', sans-serif;
    --font-label:       'Inter', sans-serif;

    /* ── Spacing Scale ──────────────────────────────────── */
    --space-unit:           8px;
    --space-sm:             8px;
    --space-md:             16px;
    --space-lg:             32px;
    --space-xl:             64px;
    --space-gutter:         24px;
    --space-glass-padding:  24px;
    --space-margin-mobile:  16px;
    --space-margin-desktop: 32px;
    --space-container-max:  1280px;

    /* ── Border Radius ──────────────────────────────────── */
    --radius-sm:    0.25rem;
    --radius-md:    0.5rem;
    --radius-lg:    0.75rem;
    --radius-xl:    1rem;
    --radius-2xl:   1.5rem;
    --radius-full:  9999px;

    /* ── Shadows ────────────────────────────────────────── */
    --shadow-glass:         0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-glass-hover:   0 8px 32px rgba(0, 107, 64, 0.05);
    --shadow-card-lift:     0 12px 24px -10px rgba(0, 107, 63, 0.15);
    --shadow-product-hover: 0 10px 25px -5px rgba(0, 107, 63, 0.1);
    --shadow-job-hover:     0 12px 40px 0 rgba(0, 107, 64, 0.1);
    --shadow-primary-glow:  0 0 8px rgba(101, 254, 169, 0.8);

    /* ── Transitions ────────────────────────────────────── */
    --transition-fast:    150ms ease;
    --transition-normal:  200ms ease;
    --transition-slow:    300ms ease;
    --transition-slower:  500ms ease;
    --transition-slowest: 700ms ease;
}


/* ============================================================================
   3. BASE / RESET STYLES
   ============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--color-on-surface);
    background-color: var(--color-background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body background variants — apply on <body> element */
.body-bg-subtle {
    background-color: #f0f4f2;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 107, 63, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(120, 89, 0, 0.05) 0px, transparent 50%);
}

.body-bg-gradient {
    background: radial-gradient(circle at top left, #f0f7f4, var(--color-background) 50%);
}

.body-bg-glow {
    background-color: var(--color-background);
    background-image:
        radial-gradient(at 0% 0%, rgba(141, 248, 183, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 109, 64, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(101, 254, 169, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 109, 64, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

.body-bg-mint {
    background-image:
        radial-gradient(circle at 0% 0%, #f0fdf4 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #f0fdf4 0%, transparent 50%);
    background-attachment: fixed;
}

/* Selection */
::selection {
    background-color: var(--color-primary-fixed);
    color: var(--color-on-primary-fixed);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

input, select, textarea {
    font: inherit;
    color: inherit;
}


/* ============================================================================
   4. MATERIAL SYMBOLS BASELINE
   ============================================================================ */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}


/* ============================================================================
   5. SCROLLBAR UTILITIES
   ============================================================================ */

/* Styled custom scrollbar — thin, themed */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 107, 63, 0.2);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 107, 63, 0.35);
}

/* Hidden scrollbar — completely invisible */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* ============================================================================
   6. GLASSMORPHISM CLASSES
   ============================================================================
   Unified glassmorphism system with consistent naming.
   Each class has a specific purpose and visual weight.
   ============================================================================ */

/* Standard glass — for cards, panels, containers */
.glass {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glass);
}

/* Glass card — higher opacity for prominent cards */
.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px 0 rgba(0, 107, 64, 0.04);
}

/* Glass effect — alias for glass-card, legacy support */
.glass-effect {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px 0 rgba(0, 107, 64, 0.04);
}

/* Glass navigation — top navbar & bottom navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Glass sidebar — vertical sidebar navigation */
.glass-sidebar {
    background: rgba(237, 238, 239, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(189, 202, 190, 0.3);
}

/* Glass search — search input backgrounds */
.glass-search {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Glass dark — dark overlay on images / hero sections */
.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass dark subtle — very light tinted glass */
.glass-dark-subtle {
    background: rgba(0, 107, 63, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 107, 63, 0.1);
}

/* Glass primary — primary-colored glass overlay */
.glass-primary {
    background: rgba(0, 107, 63, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Glass pill — small pill/badge/filter button */
.glass-pill {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Glass pill active — active state of glass pill */
.glass-pill-active {
    background: rgba(0, 107, 63, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 107, 63, 0.2);
    color: #ffffff;
}


/* ============================================================================
   7. GLOW / BACKGROUND DECORATIVE EFFECTS
   ============================================================================ */

/* Floating glow spot — absolute/fixed positioned decorative element */
.glow-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(141, 248, 183, 0.4) 0%,
        rgba(141, 248, 183, 0) 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* Large fixed glow spot — for dashboard backgrounds */
.glow-spot {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 109, 64, 0.15) 0%,
        rgba(0, 109, 64, 0) 70%
    );
    z-index: -1;
    filter: blur(60px);
    pointer-events: none;
}

/* Positioned glow variants */
.glow-top-right    { top: -100px; right: -100px; }
.glow-bottom-left  { bottom: 10%; left: 20%; }
.glow-center-right { top: 40%; right: 20%; }

/* Hero gradient overlay (dark, for text readability on images) */
.hero-gradient {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 100%
    );
}

.hero-gradient-subtle {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 60%
    );
}

/* Decorative blur circle — for card/section decoration */
.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.blur-circle-primary {
    background: rgba(var(--color-primary-rgb), 0.1);
}

.blur-circle-white {
    background: rgba(255, 255, 255, 0.2);
}


/* ============================================================================
   8. ANIMATIONS & KEYFRAMES
   ============================================================================ */

/* Float — gentle up/down floating motion */
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Fade in — for scroll reveal and content appearing */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Pulse glow — subtle pulsing glow effect */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(101, 254, 169, 0.4); }
    50%      { box-shadow: 0 0 20px rgba(101, 254, 169, 0.8); }
}
.animate-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Slide up — for modal/sheet entrance */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.animate-slide-up {
    animation: slideUp 0.3s ease-out forwards;
}


/* ============================================================================
   9. CARD & COMPONENT HOVER EFFECTS
   ============================================================================ */

/* Card lift — smooth elevation on hover */
.card-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.card-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-lift);
}

/* Product card hover — subtle lift with green shadow */
.product-card-hover {
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
.product-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-product-hover);
}

/* Job card hover — enhanced glass with larger shadow */
.job-card-shadow {
    transition: all var(--transition-slow);
}
.job-card-shadow:hover {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-job-hover);
    transform: translateY(-2px);
}

/* Image zoom on hover — apply to parent with group class */
.img-zoom {
    transition: transform var(--transition-slower);
}
.group:hover .img-zoom,
.img-zoom-container:hover .img-zoom {
    transform: scale(1.05);
}
.img-zoom-lg {
    transition: transform var(--transition-slowest);
}
.group:hover .img-zoom-lg,
.img-zoom-container:hover .img-zoom-lg {
    transform: scale(1.1);
}

/* Button press — active state */
.btn-press {
    transition: transform var(--transition-normal);
}
.btn-press:active {
    transform: scale(0.95);
}

/* Nav item slide — slight right translation on hover */
.nav-slide {
    transition: transform var(--transition-normal), background-color var(--transition-normal);
}
.nav-slide:hover {
    transform: translateX(4px);
}


/* ============================================================================
   10. LAYOUT UTILITIES
   ============================================================================ */

/* Bento grid — 12-column grid for dashboard layouts */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-gutter);
}

/* Container max-width utility */
.container-hub {
    max-width: var(--space-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-margin-mobile);
    padding-right: var(--space-margin-mobile);
}

@media (min-width: 768px) {
    .container-hub {
        padding-left: var(--space-margin-desktop);
        padding-right: var(--space-margin-desktop);
    }
}


/* ============================================================================
   11. BADGE & STATUS STYLES
   ============================================================================ */

/* Status badge — for Active/Closed/Pending states */
.badge-status {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.badge-status-active {
    background: rgba(var(--color-primary-rgb), 0.2);
    color: var(--color-primary);
}

.badge-status-closed {
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-on-surface-variant);
}

.badge-status-pending {
    background: rgba(var(--color-secondary-rgb), 0.15);
    color: var(--color-secondary);
}

/* Category badge — for article/product categories */
.badge-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
}

/* Tag badge — small inline tags */
.badge-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    backdrop-filter: blur(4px);
}

/* Sale badge */
.badge-sale {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--color-secondary);
    color: var(--color-on-secondary);
}

/* Best seller badge */
.badge-bestseller {
    display: inline-block;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--color-secondary-container);
    color: var(--color-on-secondary-container);
}

/* Job type badge */
.badge-job-type {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* ============================================================================
   12. FORM ENHANCEMENTS
   ============================================================================ */

/* Toggle switch — custom checkbox toggle */
.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.toggle-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.toggle-track {
    width: 44px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    position: relative;
    transition: background-color var(--transition-normal);
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    transition: transform var(--transition-normal);
}

.toggle-switch input:checked + .toggle-track {
    background: var(--color-primary);
}

.toggle-switch input:checked + .toggle-track::after {
    transform: translateX(20px);
    border-color: white;
}

/* File upload dropzone */
.dropzone {
    border: 2px dashed rgba(var(--color-primary-rgb), 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dropzone:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(var(--color-primary-rgb), 0.5);
}

/* Price input with prefix */
.price-input-wrapper {
    position: relative;
}

.price-input-wrapper .price-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--color-on-surface-variant);
    pointer-events: none;
}

.price-input-wrapper input {
    padding-left: 40px;
}


/* ============================================================================
   13. MODAL & OVERLAY
   ============================================================================ */

/* Backdrop overlay */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: none;
    align-items: flex-end;
}

.modal-backdrop.is-open {
    display: flex;
}

/* Bottom sheet modal */
.bottom-sheet {
    width: 100%;
    max-height: 90%;
    border-radius: 40px 40px 0 0;
    padding: 2rem;
    overflow-y: auto;
    transition: transform var(--transition-slow);
    transform: translateY(100%);
}

.bottom-sheet.is-open {
    transform: translateY(0);
}

/* Drag handle indicator */
.drag-handle {
    width: 48px;
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(var(--color-primary-rgb), 0.15);
    margin: 0 auto 2rem;
    cursor: pointer;
}


/* ============================================================================
   14. PROGRESS BAR
   ============================================================================ */

.progress-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--color-secondary-fixed);
    box-shadow: var(--shadow-primary-glow);
    transition: width var(--transition-slower);
}


/* ============================================================================
   15. TAILWIND CONFIG (JavaScript)
   ============================================================================
   Paste this config di setiap HTML page yang menggunakan Tailwind CDN,
   atau simpan di file terpisah (tailwind-config.js).
   
   Catatan: Config ini sudah di-unify dari 6 halaman, menggunakan
   secondary GOLDEN dan design tokens yang konsisten.
   
   Cara pakai:
     <script src="css/tailwind-config.js"></script>
   
   Atau copy-paste isi tailwind.config di bawah ini ke tag <script>.
   ============================================================================ */

/*
  tailwind.config = {
    darkMode: "class",
    theme: {
      extend: {
        colors: {
          "primary":                      "#006b3f",
          "primary-container":            "#008751",
          "primary-fixed":                "#8df8b7",
          "primary-fixed-dim":            "#70db9d",
          "on-primary":                   "#ffffff",
          "on-primary-container":         "#fdfff9",
          "on-primary-fixed":             "#002110",
          "on-primary-fixed-variant":     "#00522f",
          "inverse-primary":              "#70db9d",
          "surface-tint":                 "#006d40",
          "secondary":                    "#785900",
          "secondary-container":          "#fdc003",
          "secondary-fixed":              "#ffdf9e",
          "secondary-fixed-dim":          "#fabd00",
          "on-secondary":                 "#ffffff",
          "on-secondary-container":       "#6c5000",
          "on-secondary-fixed":           "#261a00",
          "on-secondary-fixed-variant":   "#5b4300",
          "tertiary":                     "#3d6552",
          "tertiary-container":           "#567e6a",
          "tertiary-fixed":               "#c1ecd4",
          "tertiary-fixed-dim":           "#a5d0b9",
          "on-tertiary":                  "#ffffff",
          "on-tertiary-container":        "#fdfffb",
          "on-tertiary-fixed":            "#002114",
          "on-tertiary-fixed-variant":    "#274e3d",
          "surface":                      "#f8f9fa",
          "surface-bright":               "#f8f9fa",
          "surface-dim":                  "#d9dadb",
          "surface-variant":              "#e1e3e4",
          "surface-container":            "#edeeef",
          "surface-container-high":       "#e7e8e9",
          "surface-container-highest":    "#e1e3e4",
          "surface-container-low":        "#f3f4f5",
          "surface-container-lowest":     "#ffffff",
          "on-surface":                   "#191c1d",
          "on-surface-variant":           "#3e4a41",
          "inverse-surface":              "#2e3132",
          "inverse-on-surface":           "#f0f1f2",
          "background":                   "#f8f9fa",
          "on-background":                "#191c1d",
          "error":                        "#ba1a1a",
          "error-container":              "#ffdad6",
          "on-error":                     "#ffffff",
          "on-error-container":           "#93000a",
          "outline":                      "#6e7a70",
          "outline-variant":              "#bdcabe"
        },
        borderRadius: {
          DEFAULT: "0.25rem",
          lg: "0.5rem",
          xl: "0.75rem",
          full: "9999px"
        },
        spacing: {
          "container-max": "1280px",
          "margin-desktop": "32px",
          "margin-mobile":  "16px",
          "gutter":         "24px",
          "glass-padding":  "24px",
          "unit":           "8px",
          "stack-sm":       "8px",
          "stack-md":       "16px",
          "stack-lg":       "32px",
          "stack-xl":       "64px"
        },
        fontFamily: {
          "display-lg":         ["Montserrat"],
          "display-lg-mobile":  ["Montserrat"],
          "headline-lg":        ["Montserrat"],
          "headline-lg-mobile": ["Montserrat"],
          "headline-md":        ["Montserrat"],
          "headline-sm":        ["Montserrat"],
          "body-lg":            ["Inter"],
          "body-md":            ["Inter"],
          "body-sm":            ["Inter"],
          "label-md":           ["Inter"],
          "label-sm":           ["Inter"]
        },
        fontSize: {
          "display-lg":         ["48px", { lineHeight: "56px", letterSpacing: "-0.02em", fontWeight: "700" }],
          "display-lg-mobile":  ["32px", { lineHeight: "40px", letterSpacing: "-0.01em", fontWeight: "700" }],
          "headline-lg":        ["32px", { lineHeight: "40px", fontWeight: "600" }],
          "headline-lg-mobile": ["24px", { lineHeight: "32px", fontWeight: "600" }],
          "headline-md":        ["24px", { lineHeight: "32px", fontWeight: "600" }],
          "headline-sm":        ["20px", { lineHeight: "28px", fontWeight: "600" }],
          "body-lg":            ["18px", { lineHeight: "28px", fontWeight: "400" }],
          "body-md":            ["16px", { lineHeight: "24px", fontWeight: "400" }],
          "body-sm":            ["14px", { lineHeight: "20px", fontWeight: "400" }],
          "label-md":           ["14px", { lineHeight: "16px", letterSpacing: "0.05em", fontWeight: "600" }],
          "label-sm":           ["12px", { lineHeight: "16px", letterSpacing: "0.05em", fontWeight: "600" }]
        }
      }
    }
  };
*/
