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

    :root {
        /* Official rigitiX Color Palette - EXACT BRAND COLORS */
        --primary-purple: #522672;
        --primary-purple-hover: #7A4DAA;
        --secondary-warm-amber: #ff8a65;
        --warm-amber: #ff8a65;
        --lavender: #CBADEB;
        --neutral-light: #F7F5FF;
        --neutral-dark: #161616;
        --white: #FFFFFF;
        --success: #bef3ef;
        
        /* Semantic Colors */
        --text-primary: #161616;
        --text-secondary: #6B7280;
        --text-purple: #522672;
        --text-white: #fff;
        --border-default: #E5E7EB;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    
        
        /* Gradients */
        --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, #7A4DAA 100%);
        --gradient-accent: linear-gradient(135deg, var(--warm-amber) 0%, #ff8a65 100%);
    }

    .text-neutral-dark{ color: #161616;}
    .text-neutral-light{ color: #F7F5FF;}
    .text-amber{ color: #ff8a65 !important;}
    .text-purple{ color: #522672;}
    .text-success{ color: #bef3ef;}

    body {
        font-family: 'Rota', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: linear-gradient(135deg, #F7F5FF 0%, #E8E4FF 100%);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Zalando', 'Sora', sans-serif;
    }

    /* White Text */
    .text-white{
        color: var(--text-white) !important;
    }

    .text-purple{
        color: var(--text-purple) !important;
    }

    

    /* Header Section */
    .hero-header {
        background: var(--gradient-primary);
        color: white;
        padding: 4rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/></svg>');
        opacity: 0.1;
    }

    .hero-header h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        z-index: 1;
        animation: fadeInUp 0.6s ease-out;
    }

    .hero-header p {
        font-size: 1.25rem;
        opacity: 0.95;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        animation: fadeInUp 0.6s ease-out 0.2s backwards;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Container */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: 4rem 0;
        animation: fadeIn 0.8s ease-out;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--primary-purple);
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.125rem;
        color: var(--text-secondary);
        text-align: center;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Color Palette Grid */
    .color-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .color-card {
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .color-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-purple);
    }

    .color-swatch {
        width: 100%;
        height: 120px;
        border-radius: 12px;
        margin-bottom: 1rem;
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .color-swatch::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    }

    .color-name {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .color-hex {
        font-family: 'Courier New', monospace;
        font-size: 0.875rem;
        color: var(--text-secondary);
        background: var(--neutral-light);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .color-usage {
        font-size: 0.875rem;
        color: var(--text-secondary);
        margin-top: 0.5rem;
    }

    .usage-percent {
        display: inline-block;
        background: var(--primary-purple);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-top: 0.5rem;
    }

    /* Button Showcase */
    .button-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .button-demo {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .button-label {
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* COLOR COMBINATION: Primary Button */
    .btn {
        padding: 0.875rem 2rem;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
        font-family: inherit;
    }

    .btn-primary {
        background: var(--primary-purple);
        color: white;
    }

    .btn-primary:hover {
        background: transparent;
        color: var(--primary-purple);
        border: 2px solid var(--primary-purple);
    }

    /* COLOR COMBINATION: Secondary Button */
    .btn-secondary {
        background: var(--warm-amber);
        color: white !important;
        border-color: var(--warm-amber);
    }

    .btn-secondary:hover {
        background: transparent;
        color: var(--warm-amber) !important;
        border: 2px solid var(--warm-amber);
    }

    

    /* COLOR COMBINATION: Success Button */
    .btn-success {
        background: transparent;
        border: 2px solid var(--warm-amber);
        color: var(--warm-amber) !important;
    }

    .btn-success:hover {
        background: var(--warm-amber);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(245, 158, 11, 0.4);
        color: #fff !important;
        border-color: var(--warm-amber);
    }

    /* COLOR COMBINATION: Ghost Button */
    .btn-ghost {
        background: transparent;
        color: var(--primary-purple);
        border: 2px solid var(--primary-purple);
    }

     

    .btn-ghost:hover {
        background: var(--primary-purple);
        color: white;
        transform: translateY(-2px);
    }

    .btn-ghost-white {
        background: #fff !important;
        color: var(--primary-purple) !important;
        border: 2px solid var(--primary-purple);
    }

    .btn-ghost-white:hover {
        background: transparent !important;
        color: #fff !important;
        border: 2px solid #fff;
    }

    /* Card Combinations */
    .card-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    /* COLOR COMBINATION: Primary Card */
    .card-primary {
        background: var(--primary-purple);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        /* border-left: 4px solid var(--warm-amber); */
        transition: all 0.3s ease;
    }

    .card-primary:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
    }

    .card-primary h3 {
        color: var(--warm-amber);
        margin-bottom: 0.75rem;
    }

    /* COLOR COMBINATION: Highlighted Card */
    .card-highlighted {
        background: var(--lavender);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .card-highlighted:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .card-highlighted h3 {
        color: var(--neutral-dark);
        margin-bottom: 0.75rem;
    }

    /* COLOR COMBINATION: Info Panel */
    .card-info {
        background: var(--secondary-warm-amber);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        /* border: 2px solid var(--primary-purple); */
    }

    .card-info h3 {
        color: var(--primary-purple);
        margin-bottom: 0.75rem;
    }

    /* COLOR COMBINATION: Success Panel */
    .card-success {
        background: var(--success);
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        /* border-left: 4px solid #ff8a65; */
    }

    .card-success h3 {
        color: var(--text-primary);
        margin-bottom: 0.75rem;
    }

    /* Form Elements */
    .form-showcase {
        background: white;
        padding: 3rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    /* COLOR COMBINATION: Default Input */
    .form-input {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--border-default);
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: white;
    }

    /* COLOR COMBINATION: Focused Input */
    .form-input:focus {
        outline: none;
        border-color: var(--primary-purple);
        box-shadow: 0 0 0 3px rgba(80, 47, 237, 0.1);
    }

    /* COLOR COMBINATION: Disabled Input */
    .form-input:disabled {
        background: var(--neutral-light);
        color: var(--text-secondary);
        cursor: not-allowed;
    }

    /* Navigation Demo */
    .nav-demo {
        background: var(--primary-purple);
        padding: 1.5rem 2rem;
        border-radius: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: var(--shadow-lg);
        margin-bottom: 2rem;
    }

    .nav-logo {
        color: white;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 0.5rem 1rem;
        border-radius: 8px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Feedback States */
    .feedback-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .alert {
        padding: 1.25rem;
        border-radius: 12px;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        box-shadow: var(--shadow-sm);
    }

    /* COLOR COMBINATION: Success State */
    .alert-success {
        background: var(--success);
        /* border-left: 4px solid #ff8a65; */
    }

    .alert-success .alert-icon {
        color: var(--text-purple);
    }

    /* COLOR COMBINATION: Info State */
    .alert-info {
        background: var(--lavender);
        /* border-left: 4px solid var(--primary-purple); */
    }

    .alert-info .alert-icon {
        color: var(--primary-purple);
    }

    /* COLOR COMBINATION: Neutral State */
    .alert-neutral {
        background: var(--neutral-light);
        border-left: 4px solid var(--text-secondary);
    }

    .alert-neutral .alert-icon {
        color: var(--text-secondary);
    }

    .alert-icon {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .alert-content h4 {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .alert-content p {
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

    /* Typography Showcase */
    .typography-demo {
        background: white;
        padding: 3rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .text-primary {
        color: var(--text-primary);
    }

    .text-secondary {
        color: var(--text-secondary);
    }

    .text-brand {
        color: var(--primary-purple);
    }

    /* Rules Summary */
    .rules-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .rule-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        border-top: 4px solid var(--primary-purple);
    }

    .rule-card h3 {
        color: var(--primary-purple);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .rule-icon {
        font-size: 1.5rem;
    }

    .rule-list {
        list-style: none;
    }

    .rule-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .rule-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--warm-amber);
        font-weight: bold;
    }

    .do-dont {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .do-card {
        background: var(--warm-amber);
        padding: 2rem;
        border-radius: 16px;
        border-left: 4px solid #ff8a65;
    }

    .do-card h4 {
        color: #ff8a65;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .dont-card {
        background: #FEE2E2;
        padding: 2rem;
        border-radius: 16px;
        border-left: 4px solid #DC2626;
    }

    .dont-card h4 {
        color: #DC2626;
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    /* Interactive Demo */
    .interactive-demo {
        background: white;
        padding: 3rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        margin-top: 2rem;
    }

    .color-picker-group {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .color-option {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .color-option:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-md);
    }

    .color-option.active {
        border-color: var(--neutral-dark);
        box-shadow: var(--shadow-lg);
    }

    .preview-box {
        padding: 3rem;
        border-radius: 16px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    /* Footer */
    .footer {
        background: var(--neutral-dark);
        color: white;
        padding: 3rem 2rem;
        text-align: center;
        margin-top: 4rem;
    }

    .footer p {
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-header h1 {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .do-dont {
            grid-template-columns: 1fr;
        }
        
        .nav-demo {
            flex-direction: column;
            gap: 1rem;
        }
        
        .nav-links {
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
        }
    }

    /* Scroll Animation */
    .fade-in {
        opacity: 0;
        animation: fadeInScroll 0.6s ease-out forwards;
    }

    @keyframes fadeInScroll {
        to {
            opacity: 1;
        }
    }

    /* Code Block */
    .code-block {
        background: var(--neutral-dark);
        color: #ff8a65;
        padding: 1.5rem;
        border-radius: 12px;
        overflow-x: auto;
        font-family: 'Courier New', monospace;
        font-size: 0.875rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }

    .code-comment {
        color: #6B7280;
    }

    /* Fun Quote Section */
    .quote-section {
        background: white;
        padding: 4rem 2rem;
        position: relative;
        overflow: hidden;
    }

    .quote-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(93, 47, 141, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .quote-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(190, 243, 223, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .quote-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .main-quote {
        background: linear-gradient(135deg, #F7F5FF 0%, #E8E4FF 100%);
        border-radius: 24px;
        padding: 3rem;
        margin-bottom: 2rem;
        position: relative;
        box-shadow: var(--shadow-lg);
        border-left: 6px solid var(--primary-purple);
    }

    .main-quote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 120px;
        color: var(--primary-purple);
        opacity: 0.2;
        font-family: Georgia, serif;
        line-height: 1;
    }

    .quote-text {
        font-size: 1.25rem;
        line-height: 1.8;
        color: var(--text-primary);
        font-style: italic;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .quote-author {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-purple);
        text-align: right;
        font-style: normal;
    }

    .quote-title {
        font-size: 0.875rem;
        color: var(--text-secondary);
        text-align: right;
        margin-top: 0.25rem;
    }

    .designer-intro {
        background: var(--warm-amber);
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        box-shadow: var(--shadow-md);
        border: 3px solid #ff8a65;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .designer-intro::before {
        content: '👋';
        position: absolute;
        top: -30px;
        left: 30px;
        font-size: 60px;
        animation: wave 2s ease-in-out infinite;
    }

    @keyframes wave {
        0%, 100% { transform: rotate(0deg); }
        25% { transform: rotate(20deg); }
        75% { transform: rotate(-20deg); }
    }

    .intro-text {
        font-size: 1.125rem;
        line-height: 1.7;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
    }

    .intro-text strong {
        color: var(--text-white);
        font-size: 1.3rem;
    }

    .designer-signature {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px dashed #ff8a65;
    }

    .signature-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-purple);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
        box-shadow: var(--shadow-md);
    }

    .signature-details {
        flex: 1;
    }

    .signature-name {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--primary-purple);
        margin-bottom: 0.25rem;
    }

    .signature-role {
        font-size: 0.875rem;
        color: var(--text-secondary);
    }

    /* Responsive quotes */
    @media (max-width: 768px) {
        .main-quote, .designer-intro {
            padding: 2rem;
        }

        .quote-text {
            font-size: 1.125rem;
        }

        .intro-text {
            font-size: 1rem;
        }

        .main-quote::before {
            font-size: 80px;
        }
    }

/* ============================================================================
   LUCIDE ICON SYSTEM
   ============================================================================ */

/* Icon Color Utilities */
.icon-primary {
    color: var(--primary-purple);
    stroke-width: 1.5;
}

.icon-accent {
    color: var(--warm-amber);
    stroke-width: 1.5;
}

.icon-neutral {
    color: var(--neutral-dark);
    opacity: 0.6;
    stroke-width: 1.5;
}

.icon-white {
    color: #FFFFFF;
    stroke-width: 1.5;
}

/* Icon Size Utilities */
.icon-sm { 
    width: 16px; 
    height: 16px; 
}

.icon-md { 
    width: 20px; 
    height: 20px; 
}

.icon-lg { 
    width: 24px; 
    height: 24px; 
}

.icon-xl { 
    width: 32px; 
    height: 32px; 
}

.icon-2xl { 
    width: 40px; 
    height: 40px; 
}

/* Icon Stroke Width Utilities */
.icon-stroke-1 { stroke-width: 1; }
.icon-stroke-1-5 { stroke-width: 1.5; }
.icon-stroke-2 { stroke-width: 2; }
.icon-stroke-2-5 { stroke-width: 2.5; }

/* Icon Animation Utilities */
.icon-hover-scale {
    transition: transform 0.2s ease;
}

.icon-hover-scale:hover {
    transform: scale(1.1);
}

.icon-hover-rotate {
    transition: transform 0.3s ease;
}

.icon-hover-rotate:hover {
    transform: rotate(15deg);
}

/* Icon Badge (for notifications, etc) */
.icon-badge {
    position: relative;
}

.icon-badge::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--warm-amber);
    border-radius: 50%;
    border: 2px solid white;
}


.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    background: var(--neutral-light);
    min-height: 140px;
    text-align: center;
    transition: .25s ease;
}

.badge.unlocked {
    background: #fff;
    border: 1px solid rgba(82,38,114,.15);
}

.badge.locked {
    opacity: 0.5;
}

.badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-purple), var(--warm-amber));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-name {
    font-weight: 800;
    font-size: 14px;
    color: var(--neutral-dark);
}

.badge-meta {
    font-size: 12px;
    color: #6b7280;
}
