/* ===================================
   CSS Variables & Design System
   =================================== */
:root {
    /* Colors - Brand Palette */
    /* Blue from Logo: #0072BC */
    --primary-500: #0072BC;
    --primary-600: #005a9e;
    --primary-700: #00437a;

    /* Green from Logo: #8DC63F */
    /* We use this as the new accent */
    --accent-500: #8DC63F;
    --accent-600: #73a52e;

    /* Keep hues for legacy/utility support if needed */
    --primary-hue: 204;
    --accent-hue: 78;

    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-card: #ffffff;

    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: #999999;

    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(var(--primary-hue), 70%, 50%, 0.15);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --spacing-unit: 8px;
    --container-width: 1200px;

    /* Geometric Design Dimensions (Easy Modify) */
    --geo-corner-size: 150px;
    /* Size of the Green Corner */
    --geo-gap-size: 10px;
    /* Gap between Green Corner and Blue Stripe */
    --geo-stripe-width: 120px;
    /* Width of the Blue Stripe */

    /* Calculated stops for gradients (Don't edit these directly unless you know CSS calc) */
    --stop-1: var(--geo-corner-size);
    --stop-2: calc(var(--geo-corner-size) + var(--geo-gap-size));
    --stop-3: calc(var(--stop-2) + var(--geo-stripe-width));

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}