:root {
            /* Primary Color: #23A96B */
            --color-primary-50: #eefaf4;
            --color-primary-100: #d6f3e3;
            --color-primary-200: #b0e8ce;
            --color-primary-300: #7fd8b2;
            --color-primary-400: #4dc392;
            --color-primary-500: #23a96b;
            --color-primary-600: #198753;
            --color-primary-700: #156c44;
            --color-primary-800: #135638;
            --color-primary-900: #10472f;

            /* Secondary Color: Coral/Orange accent */
            --color-secondary-50: #fff5f2;
            --color-secondary-100: #ffe6df;
            --color-secondary-200: #ffd1c5;
            --color-secondary-300: #ffb39f;
            --color-secondary-400: #ff8a6b;
            --color-secondary-500: #ff643d;
            --color-secondary-600: #ed4922;
            --color-secondary-700: #c53513;
            --color-secondary-800: #a32d13;
            --color-secondary-900: #872915;

            /* Tertiary Color: Deep Indigo */
            --color-tertiary-50: #f4f6ff;
            --color-tertiary-100: #e7ebff;
            --color-tertiary-200: #cfd8ff;
            --color-tertiary-300: #aebcff;
            --color-tertiary-400: #8696ff;
            --color-tertiary-500: #606afc;
            --color-tertiary-600: #4645f0;
            --color-tertiary-700: #3834d4;
            --color-tertiary-800: #2e2ca9;
            --color-tertiary-900: #282886;

            /* Background Colors */
            --color-background-50: #ffffff;
            --color-background-100: #f8fafc;
            --color-background-200: #f1f5f9;
            --color-background-300: #e2e8f0;
            --color-background-400: #cbd5e1;
            --color-background-500: #94a3b8;
            --color-background-600: #64748b;
            --color-background-700: #475569;
            --color-background-800: #334155;
            --color-background-900: #0f172a;

            /* Neutral Colors */
            --color-neutral-50: #f8fafc;
            --color-neutral-100: #f1f5f9;
            --color-neutral-200: #e2e8f0;
            --color-neutral-300: #cbd5e1;
            --color-neutral-400: #94a3b8;
            --color-neutral-500: #64748b;
            --color-neutral-600: #475569;
            --color-neutral-700: #334155;
            --color-neutral-800: #1e293b;
            --color-neutral-900: #0f172a;

            /* Typography */
            --font-heading-name: 'Plus Jakarta Sans';
            --font-body-name: 'Plus Jakarta Sans';
            --font-heading: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --letter-spacing-heading: -0.02em;
            --letter-spacing-body: 0px;

            /* Spacing */
            --space-base: 1rem;

            /* Borders */
            --radius-small: 0.5rem;
            --radius-large: 1.25rem;
            --border-width: 1px;

            /* Shadows */
            --shadow-color: 15 23 42;
            --shadow-offset-x: 0px;
            --shadow-offset-y: 10px;
            --shadow-blur: 25px;
            --shadow-spread: -5px;
            --shadow-opacity: 0.08;
            --shadow-custom: var(--shadow-offset-x) var(--shadow-offset-y) var(--shadow-blur) var(--shadow-spread) rgba(var(--shadow-color), var(--shadow-opacity));
            --shadow-custom-hover: 0px 20px 30px -5px rgba(var(--shadow-color), 0.12);
        }

/*
 * 10ants Landing Styles
 * Tailored from exported design
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Grid
 * 4. Components
 * 5. Utilities
 * 6. Responsive Design
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: #23a96b;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #198753;
  text-decoration: underline;
}

/* ==========================================================================
   3. Layout & Grid
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col {
  flex: 1;
  padding: 0 0.5rem;
}

/* ==========================================================================
   4. Components
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #23a96b;
  color: white;
}

.btn:hover {
  background-color: #198753;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(35, 169, 107, 0.25);
}

.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   5. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ==========================================================================
   6. Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .row {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 0.5rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ==========================================================================
   7. Project Specific Styles
   ========================================================================== */

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5)
}

.glass-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6)
}