/**
 * JUMPSTART WITH LG - PRODUCTION DESIGN SYSTEM v2.0
 * Brand: Sage Green (#B2D349) + Hot Pink (#D6007F) + Charcoal (#49494B)
 * Architecture: Superior to AMH - proper tokens, accessibility, performance
 */

:root {
    /* ============================================
       BRAND COLORS - Lauren's Final Brand
       Hot Pink for CTAs | Sage Green for accents | Charcoal for text
       ============================================ */
    --sage-green: #B2D349;
    --sage-green-hover: #A3C238;
    --sage-green-light: #C8E076;
    --hot-pink: #D6007F;
    --hot-pink-hover: #E6008F;
    --hot-pink-light: #FF1A9F;
    --charcoal: #49494B;
    --charcoal-light: #6A6A6C;
    
    /* ============================================
       SURFACE COLORS - White based, clean
       ============================================ */
    --surface-primary: #FFFFFF;
    --surface-secondary: #F8F8F8;
    --surface-elevated: #FAFAFA;
    --surface-dark: #49494B;
    
    /* ============================================
       TEXT COLORS - High contrast for readability
       ============================================ */
    --text-primary: #49494B;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-on-green: #FFFFFF;
    --text-on-pink: #FFFFFF;
    --text-on-dark: #FFFFFF;
    
    /* ============================================
       BORDER COLORS
       ============================================ */
    --border-subtle: rgba(73, 73, 75, 0.1);
    --border-medium: rgba(73, 73, 75, 0.2);
    --border-strong: rgba(73, 73, 75, 0.3);
    --border-pink: rgba(214, 0, 127, 0.3);
    --border-green: rgba(178, 211, 73, 0.3);
    
    /* ============================================
       SHADOWS - Subtle, professional depth
       ============================================ */
    --shadow-sm: 0 1px 3px rgba(73, 73, 75, 0.08);
    --shadow-md: 0 4px 12px rgba(73, 73, 75, 0.1);
    --shadow-lg: 0 8px 24px rgba(73, 73, 75, 0.12);
    --shadow-pink: 0 8px 24px rgba(214, 0, 127, 0.15);
    --shadow-green: 0 8px 24px rgba(178, 211, 73, 0.15);
    
    /* ============================================
       SPACING SCALE - Generous, modern
       ============================================ */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* ============================================
       TYPOGRAPHY SCALE
       ============================================ */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    
    /* ============================================
       LINE HEIGHTS
       ============================================ */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* ============================================
       BORDER RADIUS
       ============================================ */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* ============================================
       Z-INDEX SCALE
       ============================================ */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-toast: 400;
    
    /* ============================================
       TRANSITIONS - Smooth, professional
       ============================================ */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ============================================
       CONTAINER
       ============================================ */
    --container-max: 1200px;
    --container-padding: var(--space-lg);
    
    /* ============================================
       SECTION SPACING
       ============================================ */
    --section-padding-y: clamp(2rem, 4vw, 3rem);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--surface-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-md);
}

.text-center { text-align: center; }
.text-large { font-size: var(--font-size-lg); }
.text-small { font-size: var(--font-size-sm); }

/* ============================================
   LAYOUT COMPONENTS
   ============================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section--alt {
    background: var(--surface-secondary);
}

.section--dark {
    background: var(--surface-dark);
    color: var(--text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--text-on-dark);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hot-pink);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    display: inline-block;
}

/* ============================================
   BUTTON SYSTEM - Hot Pink Primary

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: 
        background-color var(--transition-normal),
        transform var(--transition-fast),
        box-shadow var(--transition-normal);
    min-height: 48px;
    line-height: 1.4;
}

.btn-primary {
    background: var(--hot-pink);
    color: var(--text-on-pink);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--hot-pink-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--sage-green);
    border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
    background: var(--sage-green);
    color: var(--text-on-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}
   ============================================ */



.btn-primary:hover {
    background: var(--hot-pink-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}


.btn-secondary:hover {
    background: var(--sage-green);
    color: var(--text-on-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* ============================================
   HIGHLIGHTS - Hot Pink for ALL
   ============================================ */

.section-label,
.proof-item strong,
.price-amount,
.testimonial-quote::before {
    color: var(--hot-pink);
}

/* ============================================
   ICONS - Mixed based on context
   SUCCESS/POSITIVE = Sage Green
   EMPHASIS/IMPORTANT = Hot Pink
   ============================================ */

/* Success indicators - Sage Green */
.filter-card--for .filter-list li::before,
.program-features li::before,
.step-content ul li::before,
.values-list li::before {
    color: var(--sage-green);
}

/* Important/emphasis - Hot Pink */
.step-number {
    background: var(--hot-pink);
    box-shadow: var(--shadow-pink);
}
    background: var(--hot-pink);
    color: var(--text-on-pink);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--hot-pink-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.btn-primary:active {
    transform: translateY(0);
}


.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CARD COMPONENTS
   ============================================ */

.card {
    background: var(--surface-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition:
        border-color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.card:hover {
    border-color: var(--hot-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

/* ============================================
   FOCUS STATES - WCAG AAA
   ============================================ */

:focus-visible {
    outline: 3px solid var(--hot-pink);
    outline-offset: 4px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

@media (min-width: 641px) {
    :root {
        --container-padding: var(--space-xl);
    }
}

@media (min-width: 1025px) {
    :root {
        --section-padding-y: clamp(2.5rem, 5vw, 4rem);
    }
}
