        :root {
       
  /* Core Palette - Updated from HSL system */
  --color-primary: linear-gradient(135deg, hsl(255, 85%, 65%) 0%, hsl(270, 70%, 50%) 100%);
  --color-secondary: hsl(270, 70%, 50%);
  --color-accent: hsl(270, 100%, 88%);
  --color-background: hsl(255, 20%, 6%);
  --color-surface: hsl(255, 15%, 10%);
  --color-border: hsl(255, 20%, 20%);
  --color-text: hsl(0, 0%, 98%);
  --color-text-secondary: hsl(240, 5%, 65%);
    --muted: 255 15% 18%;
  /* Status Colors */
  --color-success: hsl(142, 72%, 45%);
  --color-warning: hsl(38, 92%, 50%);
  --color-error: hsl(0, 84%, 60%);
  
  /* Cross-browser compatibility */
  --webkit-tap-highlight: rgba(0, 0, 0, 0);
  --moz-appearance: none;
  --webkit-appearance: none;

  /* Glow & Gradient Enhancements */
  --gradient-primary: linear-gradient(135deg, hsl(255, 85%, 65%) 0%, hsl(270, 70%, 50%) 100%);
  --gradient-border: linear-gradient(135deg, hsl(255, 85%, 65%) 0%, hsl(270, 70%, 50%) 50%, hsl(290, 80%, 55%) 100%);
  --gradient-glow: linear-gradient(135deg, hsl(255, 85%, 65% / .2) 0%, hsl(270, 70%, 50% / .2) 100%);

  --glow-primary: 0 0 40px hsl(255, 85%, 65% / .4);
  --glow-secondary: 0 0 60px hsl(270, 70%, 50% / .3);

  /* Sidebar System */
  --sidebar-background: hsl(255, 15%, 10%);
  --sidebar-foreground: hsl(240, 5%, 85%);
  --sidebar-primary: hsl(255, 85%, 65%);
  --sidebar-primary-foreground: hsl(0, 0%, 100%);
  --sidebar-accent: hsl(255, 15%, 18%);
  --sidebar-accent-foreground: hsl(240, 5%, 85%);
  --sidebar-border: hsl(255, 20%, 20%);
  --sidebar-ring: hsl(255, 85%, 65%);

  /* Transitions & Radius */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 0.75rem;
  --border: 255 20% 20%;
 
        }

      * {
    border-color: hsl(var(--border));
}
html,:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
   
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}
 
        body {
            line-height: 1.6;
            color: var(--color-text);
          background-color: #03051C;
    color: #fff;
            overflow-x: hidden;
            overflow-x: hidden;
    margin: 0 auto;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .hidden {
            display: none !important;
        }

        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .landing-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #2f2f55 0%, #16213e 50%, #0f3460 100%);
            color: white;
            position: relative;
        }

        .landing-content {
            text-align: center;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
.line-border{
background-image: var(--gradient-primary);
    position: absolute;
    width: 8rem;
    height: .25rem;
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 13px;
}

        /* ===== IMPROVED PAYMENT SECTION ===== */
        .payment-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        /* Progress Indicator */
        .payment-progress {
            margin-bottom: 2rem;
        }

        .progress-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .step.completed .step-icon {
            background: var(--gradient-primary);
            color: white;
        }

        .step.active .step-icon {
            background: #8B5CF6;
            color: white;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .step span {
            font-size: 0.875rem;
            color: #9CA3AF;
        }

        .step.completed span,
        .step.active span {
            color: white;
        }

        /* Payment Header */
        .payment-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .payment-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .payment-subtitle {
            color: #9CA3AF;
            font-size: 1.1rem;
        }
        /* Price Card */
        .price-card {
            background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
            border: 2px solid #374151;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .price-badge {
            position: absolute;
            top: -1px;
            right: 20px;
            background: #EF4444;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.875rem;
            font-weight: 600;
            display: flex;
            gap: 0.5rem;
        }

        .price-display {
            margin-top: 1rem;
        }

        .price-original {
            margin-bottom: 1rem;
        }

        .strike-through {
            font-size: 1.25rem;
            color: #6B7280;
            text-decoration: line-through;
        }

        .price-current {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.5rem;
        }

        .currency {
            font-size: 1.5rem;
            color: #8B5CF6;
            font-weight: 600;
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: white;
        }

        .period {
            color: #9CA3AF;
            font-size: 1rem;
        }

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

        .feature-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #111827;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
        }

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

        .feature-content h4 {
            color: white;
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        .feature-content p {
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        /* Coupon Section */
        .coupon-section {
            margin-bottom: 2rem;
        }

        .coupon-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            background: #1F2937;
            border: 1px solid #374151;
            border-radius: 12px;
            color: #9CA3AF;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .coupon-toggle:hover {
            background: #374151;
            color: white;
        }

        .toggle-arrow {
            transition: transform 0.3s ease;
        }

        .coupon-toggle.active .toggle-arrow {
            transform: rotate(180deg);
        }

        .coupon-form {
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .coupon-form.hidden {
            display: none;
        }

        .coupon-input-group {
            display: flex;
            gap: 0.75rem;
        }

        .coupon-input-group input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #374151;
            border-radius: 8px;
            background: #111827;
            color: white;
            font-size: 1rem;
        }

        .coupon-input-group input:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .apply-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .apply-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .coupon-message {
            margin-top: 0.75rem;
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            text-align: center;
        }

        .coupon-message.success {
            background: #10B981;
            color: white;
        }

        .coupon-message.error {
            background: #EF4444;
            color: white;
        }
        /* Payment Actions */
        .payment-actions {
            text-align: center;
            margin-bottom: 2rem;
        }

        .payment-btn {
            position: relative;
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 16px;
            font-size: 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            width: 100%;
            max-width: 400px;
        }

        .payment-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        }

        .btn-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .btn-price {
           background: transparent linear-gradient(90deg, #511595 0%, #7F2ADB 100%) 0% 0% no-repeat padding-box;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
        }

        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .payment-btn:hover .btn-shine {
            left: 100%;
        }

        .payment-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #9CA3AF;
            font-size: 0.875rem;
            margin-top: 1rem;
        }

        .guarantee-icon {
            font-size: 1.25rem;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        .trust-icon {
            font-size: 1.25rem;
        }

        .back-link {
            text-align: center;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #9CA3AF;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            color: #8B5CF6;
            transform: translateX(-5px);
        }

        /* Mobile Responsiveness for Payment Section */
        @media (max-width: 768px) {
            .payment-container {
                margin: 1rem;
                padding: 1.5rem;
                border-radius: 16px;
            }

            .payment-title {
                font-size: 1.5rem;
            }

            .payment-subtitle {
                font-size: 1rem;
            }

            .progress-steps {
                gap: 1rem;
            }

            .step-icon {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .step span {
                font-size: 0.75rem;
            }

            .price-card {
                padding: 1.5rem;
            }

            .amount {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .feature-card {
                padding: 0.75rem;
            }

            .payment-btn {
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }

            .trust-indicators {
                gap: 1rem;
            }

            .coupon-input-group {
                flex-direction: column;
            }

            .apply-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .payment-container {
                margin: 0.5rem;
                padding: 1rem;
            }

            .progress-steps {
                gap: 0.5rem;
            }

            .step-icon {
                width: 30px;
                height: 30px;
                font-size: 10px;
            }

            .amount {
                font-size: 2rem;
            }

            .feature-card {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
        }
        .payment-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .payment-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .progress-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .progress-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .progress-step.completed {
            background: var(--gradient-primary);
            color: white;
        }

        .progress-step.active {
            background: #8B5CF6;
            color: white;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .progress-line {
            width: 60px;
            height: 2px;
            background: #374151;
            margin: 0 10px;
        }

        .progress-line.completed {
            background: var(--gradient-primary);
        }

        .payment-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .payment-subtitle {
            color: #9CA3AF;
            font-size: 1.1rem;
        }

        .price-card {
            background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
            border: 2px solid #374151;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .price-badge {
            position: absolute;
            top: -1px;
            right: 20px;
            background: #EF4444;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .price-display {
            margin-top: 1rem;
        }

        .price-original {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .strike-through {
            font-size: 1.25rem;
            color: #6B7280;
            text-decoration: line-through;
        }

        .discount-badge {
            background: #10B981;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .price-current {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.5rem;
        }

        .currency {
            font-size: 1.5rem;
            color: #8B5CF6;
            font-weight: 600;
        }

        .amount {
            font-size: 3rem;
            font-weight: 700;
            color: white;
        }

        .period {
            color: #9CA3AF;
            font-size: 1rem;
        }

        .features-card {
            background: #1F2937;
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .features-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #111827;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
        }

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

        .feature-text {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .feature-text strong {
            color: white;
            font-size: 0.95rem;
        }
        .feature-text span {
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        .coupon-card {
            background: #1F2937;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .coupon-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .coupon-header h4 {
            color: white;
            font-size: 1.1rem;
            margin: 0;
        }

        .toggle-btn {
            background: #8B5CF6;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-btn:hover {
            background: #7C3AED;
            transform: translateY(-1px);
        }

        .coupon-form {
            transition: all 0.3s ease;
        }

        .coupon-form.hidden {
            display: none;
        }

        .coupon-input-group {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .coupon-input-group input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #374151;
            border-radius: 8px;
            background: #111827;
            color: white;
            font-size: 1rem;
        }

        .coupon-input-group input:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .apply-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .apply-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .coupon-message {
            padding: 0.75rem;
            border-radius: 8px;
            font-size: 0.875rem;
            text-align: center;
        }

        .coupon-message.success {
            background: #10B981;
            color: white;
        }

        .coupon-message.error {
            background: #EF4444;
            color: white;
        }

        .payment-actions {
            text-align: center;
            margin-bottom: 2rem;
        }

        .payment-btn {
            position: relative;
          background: transparent linear-gradient(90deg, #511595 0%, #7F2ADB 100%) 0% 0% no-repeat padding-box;
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 16px;
            font-size: 1.25rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0 auto 1rem;
            min-width: 300px;
            justify-content: center;
        }

        .payment-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        }

        .payment-btn:active {
            transform: translateY(-1px);
        }

        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .payment-btn:hover .btn-shine {
            left: 100%;
        }

        .btn-price {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
        }

        .payment-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        .guarantee-icon {
            font-size: 1.25rem;
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #9CA3AF;
            font-size: 0.875rem;
        }

        .trust-icon {
            font-size: 1.25rem;
        }

        .back-link {
            text-align: center;
        }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #9CA3AF;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            color: #8B5CF6;
            transform: translateX(-5px);
        }

        /* ===== MOBILE RESPONSIVENESS ===== */
        @media (max-width: 768px) {
            .payment-container {
                margin: 1rem;
                padding: 1.5rem;
                border-radius: 16px;
            }

            .payment-title {
                font-size: 1.5rem;
            }

            .payment-subtitle {
                font-size: 1rem;
            }

            .price-card {
                padding: 1.5rem;
            }

            .amount {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .feature-item {
                padding: 0.75rem;
            }

            .payment-btn {
                min-width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }

            .trust-indicators {
                gap: 1rem;
            }

            .coupon-input-group {
                flex-direction: column;
            }

            .apply-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .payment-container {
                margin: 0.5rem;
                padding: 1rem;
            }

            .progress-step {
                width: 35px;
                height: 35px;
                font-size: 12px;
            }

            .progress-line {
                width: 40px;
            }

            .amount {
                font-size: 2rem;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease-out;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease-out;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease-out;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }

        /* ===== MOBILE APP-LIKE EXPERIENCE ===== */
        @media (max-width: 768px) {
            body {
                -webkit-overflow-scrolling: touch;
                overflow-x: hidden;
            }

            .container {
                padding: 0 1rem !important;
            }
.overview-details, .overview-description {width:100% !important;}
.gap-analysis-section, .truth-framework-section, .brand-foundation-section, .category-performance-section, .priority-action-matrix, .workshop-recommendations, .implementation-roadmap {padding:16px !important;}
.gap-analysis-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 19px;
    margin-top: 24px;
}
            /* Mobile Navigation */
            .mobile-nav {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: rgba(17, 24, 39, 0.95);
                backdrop-filter: blur(10px);
                border-top: 1px solid #374151;
                padding: 0.75rem;
                z-index: 1000;
                display: flex;
                justify-content: space-around;
                align-items: center;
            }

            .mobile-nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.25rem;
                padding: 0.5rem;
                border-radius: 8px;
                transition: all 0.3s ease;
                color: #9CA3AF;
                text-decoration: none;
                font-size: 0.75rem;
                min-width: 60px;
            }

            .mobile-nav-item.active {
                color: #8B5CF6;
                background: rgba(139, 92, 246, 0.1);
            }

            .mobile-nav-item:hover {
                color: #8B5CF6;
                transform: translateY(-2px);
            }

            .mobile-nav-icon {
                font-size: 1.25rem;
            }

            /* Mobile Sections */
            .landing-section {
                min-height: 100vh;
                padding: 2rem 0;
            }

            .landing-content h1 {
                font-size: 2.5rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }

            .landing-content p {
                font-size: 1.1rem;
                line-height: 1.6;
                margin-bottom: 2rem;
            }

            /* Mobile Buttons */
            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            /* Mobile Cards */
            .question-card {
                margin-bottom: 1rem;
                padding: 1.5rem;
            }

            .question-title {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            .option-item {
                padding: 1rem;
                margin-bottom: 0.75rem;
            }

            .option-text {
                font-size: 0.95rem;
            }

            /* Mobile Results */
            .results-section {
                padding: 1rem 0;
            }

            .score-circle {
                width: 120px;
                height: 120px;
                font-size: 1.5rem;
            }

            .gap-item {
                margin-bottom: 1.5rem;
                padding: 1.5rem;
            }

            .gap-title {
                font-size: 1.1rem;
                margin-bottom: 1rem;
            }

            /* Mobile Progress Bars */
            .gap-progress-container {
                margin-bottom: 1rem;
            }

            .gap-progress-bar {
                height: 12px;
                margin-right: 12px;
            }

            .gap-percentage {
                font-size: 1rem;
            }

            /* Mobile Download Buttons */
            .download-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 2rem;
            }

            .download-buttons button {
                width: 100%;
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }

            /* Mobile Footer */
            footer {
                padding: 2rem 1rem;
                margin-bottom: 80px; /* Space for mobile nav */
            }

            .grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Mobile Animations */
            .mobile-slide-up {
                transform: translateY(100%);
                transition: transform 0.3s ease-out;
            }

            .mobile-slide-up.visible {
                transform: translateY(0);
            }

            /* Mobile Touch Interactions */
            .touchable {
                -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
                cursor: pointer;
            }

            .touchable:active {
                transform: scale(0.98);
            }

            /* Mobile Loading States */
            .loading-mobile {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.8);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 9999;
            }

            .loading-mobile .loader {
                width: 50px;
                height: 50px;
                border: 3px solid #374151;
                border-top: 3px solid #8B5CF6;
                border-radius: 50%;
                animation: spin 1s linear infinite;
                margin-bottom: 1rem;
            }

            .loading-mobile p {
                color: white;
                font-size: 1.1rem;
                text-align: center;
            }
            @keyframes spin {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
        }

        /* ===== MOBILE SPECIFIC IMPROVEMENTS ===== */
        @media (max-width: 480px) {
            .landing-content h1 {
                font-size: 2rem;
            }

            .landing-content p {
                font-size: 1rem;
            }

            .question-card {
                padding: 1rem;
            }

            .option-item {
                padding: 0.75rem;
            }

            .gap-item {
                padding: 1rem;
            }

            .score-circle {
                width: 100px;
                height: 100px;
                font-size: 1.25rem;
            }

            .mobile-nav {
                padding: 0.5rem;
            }

            .mobile-nav-item {
                padding: 0.25rem;
                font-size: 0.7rem;
            }

            .mobile-nav-icon {
                font-size: 1rem;
            }
        }

        /* ===== SMOOTH SCROLLING ===== */
        html {
            scroll-behavior: smooth;
        }

        /* ===== MOBILE VIEWPORT FIX ===== */
        @media screen and (max-width: 768px) {
            .landing-section {
                min-height: 100vh;
                min-height: -webkit-fill-available;
            }
            .slider-thumb {top: 27% !important;}
            .overview-description, .overview-paragraphs p{font-size: 16px !important; line-height:24px !important;}
            .category-score-item div{flex-direction: column !important;}
        }

        /* ===== MOBILE SAFE AREAS ===== */
        @supports (padding: max(0px)) {
            .mobile-nav {
                padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
            }
}
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .landing-content h1 {
            font-size: 6rem;
            font-weight: 700;
                margin: 0;
    position: relative;
    line-height: 94px;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .landing-subtitle {
            font-size: 1.875rem;
        line-height: 2.25rem;
        color: #a1a1aa;
                position: relative;
    top: 2rem;
            opacity: 0.95;
            animation: slideInRight 1s ease-out 0.4s both;
        }
.mb-8 {
    margin-bottom: 2rem;
}
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .methodology-overview {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 48px;
            margin: 48px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: scaleIn 1s ease-out 0.6s both;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .methodology-overview h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .methodology-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 32px;
        }

        .methodology-step {
            background: rgba(255, 255, 255, 0.15);
            padding: 24px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .methodology-step:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--color-secondary);
            color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            margin: 16px auto;
        }

        .step-content h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }
        .assessment-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 48px 0;
        }

        .highlight-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 24px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.15);
        }

        .highlight-item h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .btn {
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
          background: transparent linear-gradient(90deg, #511595 0%, #7F2ADB 100%) 0% 0% no-repeat padding-box;
            color: #000;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .btn--lg {
            padding: 20px 48px;
            font-size: 1.125rem;
        }

        .btn--outline {
            background: transparent;
            border: 2px solid currentColor;
            color: inherit;
        }

        /* New Hero Section Styles */
        .top-banner {
            margin-bottom: 40px;
        }

        .banner-content {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: #6B46C1;
            border-radius: 20px;
            color: white;
            font-size: 14px;
            font-weight: 500;
        }

        .lightning-icon {
            width: 16px;
            height: 16px;
        }

        .main-title {
            font-size: 4.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
            line-height: 1.1;
            position: relative;
        }

        .title-underline {
            width: 120px;
            height: 4px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: transparent;
            color: white;
            border: 1px solid #374151;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(139, 92, 246, 0.1);
            transition: width 0.3s ease;
        }

        .btn-secondary:hover::before {
            width: 100%;
        }

        .btn-secondary:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: #8B5CF6;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
        }

        .btn-secondary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .arrow-icon {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover .arrow-icon {
            transform: translateX(4px);
        }
        .feature-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 600px;
            margin: 0 auto;
        }

        .highlight-item {
            text-align: center;
        }

        .highlight-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }

        .highlight-text {
            color: #9CA3AF;
            font-size: 16px;
        }

        /* Responsive Design for Hero */
        @media (max-width: 768px) {
            .main-title {
                font-size: 3rem;
            }
            .m-flex {flex-direction: column;}
            .m-block{display: block !important;}
            .feature-highlights {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .mpremove {padding:0 !important;}
            .m-font {font-size: 14px !important; display: none;}            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Methodology Section Styles */
        .methodology-section {
            padding: 80px 0;
            
        }

        .methodology-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .methodology-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .methodology-header p {
            font-size: 1.25rem;
            color: #9CA3AF;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .methodology-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .methodology-card {
            background: #1F2937;
            border: 1px solid #8B5CF6;
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .methodology-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
        }

        .card-number {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(139, 92, 246, 0.1);
            line-height: 1;
        }

        .methodology-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .methodology-card p {
            color: #9CA3AF;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Responsive Design for Methodology */
        @media (max-width: 768px) {
            .methodology-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .p-12 {
    padding: 1rem;
}
            .methodology-header h2 {
                font-size: 2.5rem;
            }
            
            .methodology-card {
                padding: 24px;
            }
        }

        /* Assessment Features Section Styles */
        .assessment-features-section {
            padding: 80px 0;
            background: rgba(31, 41, 55, 0.3);
        }

        .features-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .features-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: #1F2937;
            border: 1px solid #374151;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #8B5CF6;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: #9CA3AF;
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .cta-box {
            background: #1F2937;
            border: 1px solid #8B5CF6;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-box h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .cta-box p {
            color: #9CA3AF;
            margin-bottom: 24px;
        }

        .benefits {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
        }

        .benefit-item {
            text-align: center;
        }

        .benefit-value {
            font-size: 2rem;
            font-weight: 800;
            color: #8B5CF6;
            margin-bottom: 4px;
        }

        .benefit-label {
            font-size: 0.875rem;
            color: #9CA3AF;
        }

        .benefit-divider {
            width: 1px;
            height: 40px;
            background: #374151;
        }

        /* Responsive Design for Assessment Features */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .features-header h2 {
                font-size: 2.5rem;
            }
            
            .benefits {
                flex-direction: column;
                gap: 16px;
            }
            
            .benefit-divider {
                width: 40px;
                height: 1px;
            }
        }

        /* Final CTA Section Styles */
        .final-cta-section {
            padding: 80px 0;
            background: #03051C;
            position: relative;
            overflow: hidden;
        }
      /*  .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 25%;
            width: 500px;
            height: 500px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        } 
        .final-cta-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 25%;
            width: 500px;
            height: 500px;
            background: rgba(168, 85, 247, 0.2);
            border-radius: 50%;
            filter: blur(100px);
            z-index: 0;
        } */


        .cta-content {
            background: #1F2937;
            border: 1px solid #8B5CF6;
            border-radius: 24px;
            padding: 48px;
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 1.25rem;
            color: #9CA3AF;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .checklist {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .checklist-item {
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
        }

        .check-icon {
            color: #8B5CF6;
            flex-shrink: 0;
        }

        .checklist-item span {
            color: white;
            font-size: 0.875rem;
        }

        .cta-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 20px 40px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 24px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
        }

        .cta-button .arrow-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .arrow-icon {
            transform: translateX(4px);
        }

        .disclaimer {
            color: #9CA3AF;
            font-size: 0.875rem;
            margin: 0;
        }

        /* Responsive Design for Final CTA */
        @media (max-width: 768px) {
            .cta-content {
                padding: 32px 24px;
            }
            
            .cta-content h2 {
                font-size: 2.5rem;
            }
            
            .checklist {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        .assessment-section {
            min-height: 100vh;
            padding: 80px 0;
            background: #03051C;
            position: relative;
        }

        .assessment-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .assessment-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .current-category-info {
            margin-bottom: 40px;
        }

        .current-category-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #8B5CF6;
            margin-bottom: 8px;
        }

        .current-category-info p {
            color: #9CA3AF;
            font-size: 1rem;
        }

        .progress-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #374151;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            border-radius: 4px;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: progressShine 2s infinite;
        }

        @keyframes progressShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .progress-text {
            color: #9CA3AF;
            font-size: 0.875rem;
            text-align: center;
        }

        .assessment-form {
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .question-card {
            background: #1F2937;
            border: 1px solid #374151;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .question-card:hover {
            border-color: #8B5CF6;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
        }

        .question-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .options-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .option-item {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            background: #111827;
            border: 1px solid #374151;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .option-item:hover {
            background: #1F2937;
            border-color: #8B5CF6;
        }

        .option-item.selected {
            background: rgba(139, 92, 246, 0.1);
            border-color: #8B5CF6;
        }

        .option-radio {
            width: 20px;
            height: 20px;
            border: 2px solid #6B7280;
            border-radius: 50%;
            margin-right: 16px;
            position: relative;
            transition: all 0.3s ease;
        }

        .option-item.selected .option-radio {
            border-color: #8B5CF6;
            background: #8B5CF6;
        }

        .option-item.selected .option-radio::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
        }

        .option-text {
            color: white;
            font-size: 1rem;
            flex: 1;
        }

        .assessment-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .assessment-navigation .btn-primary,
        .assessment-navigation .btn-secondary {
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .assessment-navigation .btn-primary {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .assessment-navigation .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .assessment-navigation .btn-primary:hover::before {
            left: 100%;
        }

        .assessment-navigation .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
        }

        .assessment-navigation .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .assessment-navigation .btn-secondary {
            background: transparent;
            color: white;
            border: 1px solid #374151;
            position: relative;
            overflow: hidden;
        }

        .assessment-navigation .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(139, 92, 246, 0.1);
            transition: width 0.3s ease;
        }

        .assessment-navigation .btn-secondary:hover::before {
            width: 100%;
        }

        .assessment-navigation .btn-secondary:hover {
            background: rgba(139, 92, 246, 0.1);
            border-color: #8B5CF6;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
        }

        .assessment-navigation .btn-secondary:active {
            transform: translateY(-1px) scale(0.98);
        }
        /* Responsive Design for Assessment */
        @media (max-width: 768px) {
            .assessment-header h2 {
                font-size: 2.5rem;
            }
            
            .question-card {
                padding: 24px;
            }
            
            .assessment-navigation {
                flex-direction: column;
                gap: 16px;
            }
            
            .assessment-navigation .btn-primary,
            .assessment-navigation .btn-secondary {
                width: 100%;
            }

            /* Mobile animations */
            .landing-section,
            .methodology,
            .assement,
            .assessment-section,
            .results-section {
                animation: slideInUp 1s ease-out;
            }

            .methodology-step,
            .gap-item,
            .user-info-section,
            .payment-section {
                animation: slideInUp 0.8s ease-out;
            }

            .methodology-step:nth-child(1) { animation-delay: 0.1s; }
            .methodology-step:nth-child(2) { animation-delay: 0.2s; }
            .methodology-step:nth-child(3) { animation-delay: 0.3s; }
            .methodology-step:nth-child(4) { animation-delay: 0.4s; }

            .gap-item:nth-child(1) { animation-delay: 0.1s; }
            .gap-item:nth-child(2) { animation-delay: 0.2s; }
            .gap-item:nth-child(3) { animation-delay: 0.3s; }
        }

        /* Results Section Styles */
        .results-section {
            min-height: 100vh;
            padding: 80px 0;
            background: #03051C;
            position: relative;
            overflow-x: hidden;
            animation: slideInUp 1s ease-out;
        }

        .results-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(189, 150, 232, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(56, 14, 104, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, rgba(189, 150, 232, 0.05) 0%, rgba(56, 14, 104, 0.05) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .results-section > * {
            position: relative;
            z-index: 1;
        }

        .results-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .results-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 40px;
        }

        /* Brand Health Assessment - Modern Design */
        .brand-health-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0;
        }

        .brand-health-title {
            font-size: 4rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.1;
        }

        .brand-health-subtitle {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 10px 0;
        }

        .title-underline {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 100%);
            margin: 15px auto;
            border-radius: 4px;
        }

        .overview-card {
            background: rgba(17, 24, 39, 0.9);
            border: 2px solid #8B5CF6;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
            max-width: 1036px;
            margin-left: auto;
            margin-right: auto;
        }

        .overview-title {
            font-size: 2rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 15px 0;
            text-align: center;
        }

        .overview-description {
            font-size: 22px;
            color: #e5e7eb;
    margin: 0 auto 30px auto;
            line-height: 30px;
            text-align: center;
    width: 72%;
        }

        .score-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            border-radius: 20px;
    border: 2px solid #8B5CF6;
    height: 300px;
        }

        .score-circle {
            width: 140px;
            height: 140px;
            background: linear-gradient(135deg, #FFC400 0%, #FFA500 50%, #000000 100%);
            border: 4px solid #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 0 40px rgba(255, 196, 0, 0.4);
            transition: all 0.3s ease;
        }

        .score-circle:hover {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(255, 196, 0, 0.6);
        }

        .score-inner {
            width: 100px;
            height: 100px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .score-value {
            font-size: 3rem;
            font-weight: 700;
            color: #FFFFFF;
            font-family: 'Manrope', sans-serif;
        }

        .grade-badge {
            background: transparent;
            padding: 0;
            border: none;
            box-shadow: none;
        }

        .grade-text {
            font-size: 1.5rem;
            font-weight: 300;
            color: white;
            text-align: center;
            font-family: 'Manrope', sans-serif;
        }

        .score-grade {
            font-size: 1.5rem;
            font-weight: 300;
            color: white;
            text-align: center;
            font-family: 'Manrope', sans-serif;
        }

        .overview-details {
            width: 72%;
    margin: 30px auto;
        }

        .overview-summary {
            color: #FFFFFF;
            font-size: 1.125rem;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 24px;
            text-align: center;
            font-family: 'Manrope', sans-serif;
        }

        .overview-paragraphs {
            margin-top: 16px;
        }

        .overview-paragraphs p {
            color: #e5e7eb;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 16px;
            text-align: center;
            font-family: 'Manrope', sans-serif;
        }

        .overview-details p {
            color: #e5e7eb;
            font-size: 18px;
            line-height: 24px;
            margin-bottom: 16px;
            text-align: center;
        }

        .cta-button {
          background: transparent linear-gradient(90deg, #511595 0%, #7F2ADB 100%) 0% 0% no-repeat padding-box;
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: .95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 30px auto;
            display: flex;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
            font-family: 'Manrope', sans-serif;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        .arrow-icon {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .arrow-icon {
            transform: translateX(4px);
        }

        .grade-legend {
            margin-top: 30px;
            text-align: center;
            font-family: 'Manrope', sans-serif;
        }

        .grade-legend p {
            color: #BD96E8;
            font-size: 0.875rem;
            margin: 4px 0;
            font-family: 'Manrope', sans-serif;
            line-height: 1.5;
        }

        .grade-legend strong {
            color: #ffffff;
            font-family: 'Manrope', sans-serif;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .brand-health-title {
                font-size: 2.5rem;
            }
            
            .brand-health-subtitle {
                font-size: 2rem;
            }
            
            .score-display {
                flex-direction: column;
                gap: 20px;
            }
            
            .score-circle {
                width: 120px;
                height: 120px;
            }
            
            .score-inner {
                width: 80px;
                height: 80px;
            }
            
            .score-value {
                font-size: 2.5rem;
            }
            
            .overview-card {
                padding: 20px;
                margin: 0px;
            }
        }
        @media (max-width: 480px) {
            .brand-health-title {
                font-size: 2rem;
            }
            
            .brand-health-subtitle {
                font-size: 1.5rem;
            }
            
            .score-circle {
                width: 100px;
                height: 100px;
            }
            
            .score-inner {
                width: 70px;
                height: 70px;
            }
            
            .score-value {
                font-size: 2rem;
            }
        }

        .results-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Category Breakdown Section */
        .category-breakdown-section {
            background: #111827;
            border: 1px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.2s;
        }

        .category-breakdown-title {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .category-breakdown-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .category-item {
            background: rgba(56, 14, 104, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .category-item:nth-child(1) { animation-delay: 0.1s; }
        .category-item:nth-child(2) { animation-delay: 0.2s; }
        .category-item:nth-child(3) { animation-delay: 0.3s; }
        .category-item:nth-child(4) { animation-delay: 0.4s; }

        .category-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
        }

        .category-title {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .category-progress-container {
            position: relative;
            margin-bottom: 16px;
        }

        .category-progress-bar {
            position: relative;
            width: 100%;
            height: 16px;
            background: #380E68;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 16px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .category-progress-fill {
            height: 100%;
            border-radius: 8px;
            position: relative;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
        }

        .category-progress-fill.vision-reality {
            background: #10b981;
        }

        .category-progress-fill.people-culture {
            background: #10b981;
        }

        .category-progress-fill.image-perception {
            background: #10b981;
        }

        .category-progress-fill.truth-framework {
            background: #10b981;
        }

        .category-progress-fill.brand-foundation {
            background: #10b981;
        }

        .category-progress-fill.brand-expression {
            background: #10b981;
        }

        .category-progress-circle {
            position: absolute;
            top: 50%;
            right: 0;
            width: 20px;
            height: 20px;
            background: #FFFFFF;
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .category-percentage {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            display: block;
            text-align: center;
        }

        .truth-framework-section {
            background: #111827;
            border: 1px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.4s;
        }

        /* Truth Assessment Framework Styling */
        .truth-framework-title {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .truth-framework-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 800px;
            margin: 0 auto;
        }

        .truth-item {
            background: rgba(56, 14, 104, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }
        .truth-item:nth-child(1) { animation-delay: 0.1s; }
        .truth-item:nth-child(2) { animation-delay: 0.2s; }
        .truth-item:nth-child(3) { animation-delay: 0.3s; }

        .truth-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
        }

        .truth-item-title {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .truth-progress-container {
            position: relative;
            margin-bottom: 16px;
        }

        .truth-progress-bar {
            position: relative;
            width: 100%;
            height: 16px;
            background: #380E68;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 16px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .truth-progress-fill {
            height: 100%;
            border-radius: 8px;
            position: relative;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
        }

        .truth-progress-fill.product-truth {
            background: #10b981;
        }

        .truth-progress-fill.market-truth {
            background: #10b981;
        }

        .truth-progress-fill.consumer-truth {
            background: #10b981;
        }

        .truth-progress-circle {
            position: absolute;
            top: 50%;
            right: 0;
            width: 17px;
            height: 17px;
            background: #FFFFFF;
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .truth-percentage {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            display: block;
            text-align: center;
        }

        /* Mobile Responsive for Category Breakdown */
        @media (max-width: 768px) {
            .category-breakdown-title {
                font-size: 1.75rem;
            }

            .category-breakdown-grid {
                gap: 20px;
            }

            .category-item {
                padding: 20px;
            }

            .category-percentage {
                font-size: 1.25rem;
            }

            .category-progress-bar {
                height: 10px;
            }

            .category-progress-circle {
                width: 16px;
                height: 16px;
            }
        }

        /* Mobile Responsive for Truth Framework */
        @media (max-width: 768px) {
            .truth-framework-title {
                font-size: 1.75rem;
            }

            .truth-framework-grid {
                gap: 20px;
            }

            .truth-item {
                padding: 20px;
            }

            .truth-percentage {
                font-size: 1.25rem;
            }

            .truth-progress-bar {
                height: 10px;
            }

            .truth-progress-circle {
                width: 16px;
                height: 16px;
            }
        }

        /* Common Section Styling */
        .section-title {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #FFFFFF;
            text-align: center;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-description {
            font-family: 'Manrope', sans-serif;
            font-size: 1.125rem;
            color: #E5E7EB;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* Core Gap Analysis Section */
        .core-gap-analysis-section, .plan-selection-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.1s;
        }

        .gap-analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gap-item {
            background: rgba(56, 14, 104, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .gap-item:nth-child(1) { animation-delay: 0.1s; }
        .gap-item:nth-child(2) { animation-delay: 0.2s; }
        .gap-item:nth-child(3) { animation-delay: 0.3s; }

        .gap-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
        }

        .gap-item {
            position: relative;
        }
        .gap-item .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-bottom: 8px;
        }

        .gap-item .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.9);
        }

        .gap-item:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        .gap-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 20px;
            text-align: center;
        }

        .gap-visual {
            position: relative;
            margin-bottom: 16px;
        }

        .gap-bar {
            width: 100%;
            height: 16px;
            background: #380E68;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gap-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: var(--progress-width, 0%);
            background: var(--progress-color, #10b981);
            border-radius: 8px;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gap-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 20px;
            height: 20px;
            background: #FFFFFF;
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
            transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .gap-bar.vision-reality::after {
            background: #10b981;
        }

        .gap-bar.people-culture::after {
            background: #10b981;
        }

        .gap-bar.image-perception::after {
            background: #10b981;
        }

       /* Gap Progress Bar Styles */
        .gap-progress-container {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .gap-progress-bar {
            flex: 1;
    height: 12px;
            background: #380E68;
            border-radius: 8px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: visible;
            margin-right: 16px;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .gap-progress-fill {
            height: 100%;
            width: 0%;
    background: #10b981;
            border-radius: 8px;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            min-width: 2px;
}

/* White circle indicator at the end of progress bar */
.gap-progress-fill::after {
            content: '';
            position: absolute;
    right: 0;
            top: 50%;
    transform: translate(50%, -50%);
            width: 20px;
            height: 20px;
            background: #FFFFFF;
    border: 3px solid #380E68;
            border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3);
            transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .gap-percentage {
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #FFFFFF;
            min-width: 50px;
            text-align: right;
        }
        /* Gap Progress Fill Colors */
        .gap-progress-fill.vision-reality { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }
        .gap-progress-fill.people-culture { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
        }
        .gap-progress-fill.image-perception { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }
        .gap-progress-fill.product-truth { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
        }
        .gap-progress-fill.market-truth { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
        }
        .gap-progress-fill.consumer-truth { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }
        
        /* Additional progress bar colors for detailed performance */
        .gap-progress-fill.vision-people { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }
        .gap-progress-fill.people-perception { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
        }
        .gap-progress-fill.vision-perception { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }
        .gap-progress-fill.truth-framework { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
        }
        .gap-progress-fill.brand-foundation { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
        }
        .gap-progress-fill.brand-expression { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }
        .gap-progress-fill.brand-manual { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }
        .gap-progress-fill.marketing-implementation { 
            background: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
        }

        .gap-score {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #8B5CF6;
            text-align: center;
            display: block;
            margin-top: 12px;
        }

        .gap-score::after {
            content: 'Out of 100';
            display: block;
            font-size: 0.875rem;
            font-weight: 400;
            color: #FFFFFF;
            margin-top: 4px;
        }

        .gap-interpretation {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            color: #E5E7EB;
            text-align: center;
            line-height: 1.5;
            margin: 0;
        }

        /* Detailed Category Performance Section */
        .detailed-category-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.2s;
        }

        .detailed-performance-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .performance-row {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            padding: 16px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .performance-row:hover {
            background: rgba(56, 14, 104, 0.1);
            border-radius: 8px;
            padding: 16px 12px;
        }

        .performance-label {
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFFFFF;
            min-width: 200px;
            margin-right: 20px;
            line-height: 1.4;
        }

        .performance-progress-container {
            flex: 1;
            display: flex;
            align-items: center;
            position: relative;
        }

        .performance-progress-bar {
            flex: 1;
            height: 16px;
            background: #380E68;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
            margin-right: 16px;
        }

        .performance-progress-fill {
            height: 100%;
            border-radius: 8px;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
            position: relative;
        }

        .performance-progress-fill::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background: #FFFFFF;
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
            transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .performance-percentage {
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #FFFFFF;
            min-width: 50px;
            text-align: right;
        }

        /* Progress bar colors based on score ranges */
        .vision-people { background: #10b981; }
        .people-perception { background: #10b981; }
        .vision-perception { background: #10b981; }
        .truth-framework { background: #10b981; }
        .brand-foundation { background: #10b981; }
        .brand-expression { background: #10b981; }
        .brand-manual { background: #10b981; }
        .marketing-implementation { background: #10b981; }

        /* Tooltip styles */
        .performance-tooltip {
            position: absolute;
            top: -10px;
            right: 0;
            background: rgba(17, 24, 39, 0.95);
            border: 1px solid #8B5CF6;
            border-radius: 8px;
            padding: 16px;
            min-width: 250px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .performance-row:hover .performance-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .tooltip-content h4 {
            font-family: 'Manrope', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFFFFF;
            margin: 0 0 8px 0;
        }

        .tooltip-content p {
            font-family: 'Manrope', sans-serif;
            font-size: 0.8rem;
            color: #E5E7EB;
            margin: 0 0 8px 0;
            line-height: 1.4;
        }

        .tooltip-score {
            font-family: 'Manrope', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: #8B5CF6;
        }

        .tooltip-score span {
            color: #FFFFFF;
        }
        /* Priority Action Matrix Section */
        .priority-matrix-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.3s;
        }

        .priority-matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .priority-item {
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .priority-item:nth-child(1) { animation-delay: 0.1s; }
        .priority-item:nth-child(2) { animation-delay: 0.2s; }
        .priority-item:nth-child(3) { animation-delay: 0.3s; }

        .high-priority {
            background: rgba(255, 0, 0, 0.1);
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        .medium-priority {
            background: rgba(255, 196, 0, 0.1);
            border: 1px solid rgba(255, 196, 0, 0.3);
        }

        .low-priority {
            background: rgba(5, 159, 21, 0.1);
            border: 1px solid rgba(5, 159, 21, 0.3);
        }

        .priority-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
        }

        .priority-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .priority-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: #FFFFFF;
            margin: 0;
        }

        .priority-badge {
            font-family: 'Manrope', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .high-priority .priority-badge {
            background: #FF0000;
            color: #FFFFFF;
        }

        .medium-priority .priority-badge {
            background: #FFC400;
            color: #000000;
        }

        .low-priority .priority-badge {
            background: #059F15;
            color: #FFFFFF;
        }

        .priority-actions {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .priority-actions li {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            color: #E5E7EB;
            margin-bottom: 8px;
            padding-left: 16px;
            position: relative;
        }

        .priority-actions li::before {
            content: '•';
            color: #8B5CF6;
            position: absolute;
            left: 0;
        }

        /* Brand Workshop Recommendations Section */
        .workshop-recommendations-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.4s;
        }

        .workshop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .workshop-item {
            background: rgba(56, 14, 104, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
            text-align: center;
        }

        .workshop-item:nth-child(1) { animation-delay: 0.1s; }
        .workshop-item:nth-child(2) { animation-delay: 0.2s; }
        .workshop-item:nth-child(3) { animation-delay: 0.3s; }

        .workshop-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
        }

        .workshop-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: #FFFFFF;
        }

        .workshop-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .workshop-description {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            color: #E5E7EB;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .workshop-duration {
            font-family: 'Manrope', sans-serif;
            font-size: 0.75rem;
            color: #8B5CF6;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Implementation Roadmap Section */
        .implementation-roadmap-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            animation-delay: 0.5s;
        }
        .roadmap-timeline {
            max-width: 800px;
            margin: 0 auto;
        }

        .roadmap-phase {
            display: flex;
            align-items: flex-start;
            margin-bottom: 32px;
            animation: slideInUp 0.6s ease-out;
        }

        .roadmap-phase:nth-child(1) { animation-delay: 0.1s; }
        .roadmap-phase:nth-child(2) { animation-delay: 0.2s; }
        .roadmap-phase:nth-child(3) { animation-delay: 0.3s; }

        .phase-number {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Manrope', sans-serif;
            font-size: 1.125rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .phase-content {
            flex: 1;
        }

        .phase-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .phase-actions {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .phase-actions li {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            color: #E5E7EB;
            margin-bottom: 8px;
            padding-left: 16px;
            position: relative;
        }

        .phase-actions li::before {
            content: '→';
            color: #8B5CF6;
            position: absolute;
            left: 0;
        }

        /* Mobile Responsive for All Sections */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.75rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .gap-analysis-grid,
            .category-performance-grid,
            .priority-matrix-grid,
            .workshop-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .gap-item,
            .performance-item,
            .priority-item,
            .workshop-item {
                padding: 20px;
            }

            .roadmap-phase {
                flex-direction: column;
                text-align: center;
            }

            .phase-number {
                margin: 0 auto 16px;
            }

            .core-gap-analysis-section,
            .detailed-category-section,
            .priority-matrix-section,
            .workshop-recommendations-section,
            .implementation-roadmap-section {
                padding: 24px;
                margin: 20px 0;
            }
        }

        .gap-analysis-section h3,
        .truth-framework-section h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }

        .section-description {
            color: #E5E7EB;
            margin-bottom: 32px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .gap-analysis-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .gap-item {
            background: #111827;
            border: 1px solid #8B5CF6;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            animation: slideInUp 0.6s ease-out;
        }

        .gap-item:nth-child(1) { animation-delay: 0.1s; }
        .gap-item:nth-child(2) { animation-delay: 0.2s; }
        .gap-item:nth-child(3) { animation-delay: 0.3s; }

        .gap-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
            border-color: #A855F7;
        }

        .gap-item h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            margin-bottom: 16px;
        }

        .gap-visual {
            position: relative;
            margin-bottom: 16px;
        }

        .gap-bar {
            width: 100%;
            height: 8px;
            background: #380E68;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 8px;
            position: relative;
        }

        .gap-bar::before {
            content: '';
            position: absolute;
            top: 50%;
            left: var(--progress-width, 0%);
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 2px #380E68;
        }

        .gap-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: #10b981;
            border-radius: 4px;
            transition: width 0.5s ease;
            width: var(--progress-width, 0%);
        }
        .gap-bar.vision-reality::after {
            background: #10b981;
        }

        .gap-bar.people-culture::after {
            background: #10b981;
        }

        .gap-bar.image-perception::after {
            background: #10b981;
        }

        .gap-bar.product-truth::after {
            background: #10b981;
        }

        .gap-bar.market-truth::after {
            background: #10b981;
        }

        .gap-bar.consumer-truth::after {
            background: #10b981;
        }

        .gap-score {
            font-size: 1.25rem;
            font-weight: 700;
            color: #8B5CF6;
        }

        .gap-interpretation {
            color: #E5E7EB;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .user-info-section {
            background: #111827;
            border: 2px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            margin: 40px auto;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
            animation: slideInUp 0.8s ease-out;
            max-width: 1200px;
        }

        .form-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .form-header h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-family: 'Manrope', sans-serif;
            font-size: 0.875rem;
            color: #E5E7EB;
            margin: 0;
        }

        .user-form {
            max-width: 100%;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #FFFFFF;
            font-size: 14px;
            font-family: 'Manrope', sans-serif;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #FFFFFF;
            font-size: 14px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-family: 'Manrope', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
            
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .btn.btn--lg {
            width: 100%;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: 600;
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Manrope', sans-serif;
        }

        .btn.btn--lg:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }

        /* Mobile Responsive for Form */
        @media (max-width: 768px) {
            .user-info-section {
                padding: 24px;
                margin: 20px 0;
                max-width: none;
            }
.text-lg {
    font-size: .67rem;
    line-height: 1.75rem
28px
;
}
            .form-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .form-header h3 {
                font-size: 1.25rem;
            }

            .form-subtitle {
                font-size: 0.8rem;
            }

            .form-group input,
            .form-group select {
                padding: 10px 14px;
                font-size: 13px;
            }

            .btn.btn--lg {
                padding: 12px 20px;
                font-size: 15px;
            }
        }

        .payment-section {
            background: #1F2937;
            border: 1px solid #8B5CF6;
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            margin-bottom: 40px;
            animation: slideInUp 0.8s ease-out;
        }

        .payment-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .price-display {
            margin-bottom: 32px;
        }

        .original-price {
            font-size: 2rem;
            font-weight: 800;
            color: #8B5CF6;
            text-decoration: line-through;
            margin-right: 16px;
        }

        .discounted-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
        }

        .payment-features {
            text-align: left;
            margin-bottom: 32px;
        }

        .payment-features h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .payment-features ul {
            list-style: none;
            padding: 0;
        }

        .payment-features li {
            color: #E5E7EB;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .payment-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #8B5CF6;
            font-weight: bold;
        }

        .coupon-section {
            margin-bottom: 32px;
        }

        .coupon-input-group {
            display: flex;
            gap: 12px;
            max-width: 400px;
            margin: 0 auto 16px;
        }

        .coupon-input-group input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #374151;
            border-radius: 8px;
            background: #111827;
            color: white;
            font-size: 1rem;
        }

        .coupon-input-group input:focus {
            outline: none;
            border-color: #8B5CF6;
        }

        .coupon-message {
            color: #8B5CF6;
            font-size: 0.875rem;
        }

        .payment-btn {
            background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        .payment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
        }

        /* Responsive Design for Results */
        @media (max-width: 768px) {
            .results-header h2 {
                font-size: 2.5rem;
            }
            footer{margin-bottom:0 !important; }
            .overall-score {
                flex-direction: column;
                gap: 24px;
            }
            .text-lg {
    font-size: .90rem;
    line-height: 1.75rem;
}
            
            .gap-analysis-grid {
                grid-template-columns: 1fr;
            }
            
            .coupon-input-group {
                flex-direction: column;
            }
        }

        .category-section {
            animation: fadeIn 0.5s ease-out;
        }

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

        .question-item {
            margin-bottom: 32px;
            padding: 24px;
            background: var(--color-surface);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .question-item:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .question-text {
            font-weight: 600;
            margin-bottom: 16px;
            font-size: 1.125rem;
        }

        .rating-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .p-12 {
    padding: 1.5rem;
}
        .rating-option {
            flex: 1;
            min-width: 150px;
        }

        .rating-option input[type="radio"] {
            display: none;
        }

        .rating-option label {
            display: block;
            padding: 16px;
            border: 2px solid var(--color-border);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .rating-option label:hover {
            border-color: var(--color-primary);
            transform: translateY(-2px);
        }

        .rating-option input[type="radio"]:checked + label {
            background: var(--color-primary);
            color: white;
            border-color: var(--color-primary);
            transform: scale(1.05);
        }

        .rating-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .rating-label {
            display: block;
            font-size: 0.875rem;
        }

        .assessment-navigation {
            margin-top: 32px;
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .results-section {
            min-height: 100vh;
            padding: 80px 0;
            background: url('images/bg.png') no-repeat var(--color-surface);
            background-size: contain;
            
        }

        .results-header {
            background: url('images/bg.png') no-repeat(135deg, var(--color-primary), #1a6570);
            color: white;
            padding: 48px;
            border-radius: 16px;
            margin-bottom: 32px;
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }

        .overall-score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
            flex-direction: column;
        }

        .score-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 8px solid rgba(17, 24, 39, 0.9);
             outline: 8px solid white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .score-value {
            font-size: 3rem;
            font-weight: 700;
        }

        .score-grade {
            font-size: 2rem;
            font-weight: 700;
        }

        .gap-analysis-section,
        .truth-framework-section,
        .brand-foundation-section,
        .category-performance-section,
        .priority-action-matrix,
        .workshop-recommendations,
        .implementation-roadmap {
        
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            animation: fadeInUp 0.6s ease-out;
        }

        .section-description {
            color: #fff;
            margin-bottom: 16px;
            font-size:22px;
            line-height: 30px;
        }

        .gap-analysis-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .gap-item {
            padding: 24px;
            background: var(--color-surface);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .gap-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .gap-visual {
            display: block;
            align-items: center;
            gap: 16px;
            margin: 16px 0;
        }

        .gap-bar {
            flex: 1;
            height: 24px;
            background: var(--color-border);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .gap-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: var(--gap-width, 0%);
            background: #10b981;
            transition: width 1s ease-out;
            animation: fillBar 1.5s ease-out;
        }

        @keyframes fillBar {
            from { width: 0%; }
            to { width: var(--gap-width, 0%); }
        }

        .gap-score {
            font-weight: 700;
             font-size: 0.975rem;
    color: #B9B9B9;
            min-width: 60px;
        }

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

        .payment-section {
            background: linear-gradient(135deg, var(--color-primary), #1a6570);
            color: white;
            padding: 48px;
            border-radius: 16px;
            text-align: center;
            margin: 32px 0;
            animation: bounceIn 1s ease-out;
        }

        @keyframes bounceIn {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); opacity: 1; }
        }

        .price-display {
            text-align: center;
            margin: 20px 0;
            font-size: 2rem;
            font-weight: 700;
        }

        .original-price {
            color: white;
        }

        .original-price.has-discount {
            text-decoration: line-through;
            opacity: 0.6;
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .discounted-price {
            color: var(--color-secondary);
            font-size: 2.2rem;
            animation: priceHighlight 0.5s ease-in-out;
        }

        @keyframes priceHighlight {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .coupon-section {
            max-width: 400px;
            margin: 30px auto;
        }

        .coupon-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        .coupon-input-group input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .coupon-input-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .coupon-input-group input:focus {
            outline: none;
            border-color: var(--color-secondary);
            background: rgba(255, 255, 255, 0.15);
        }

        .coupon-input-group .btn {
            padding: 12px 24px;
            background: var(--color-secondary);
            color: #000;
            white-space: nowrap;
        }

        .coupon-message {
            padding: 10px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .coupon-message.success {
            background: rgba(34, 197, 94, 0.2);
            border: 2px solid var(--color-success);
            color: #fff;
        }

        .coupon-message.error {
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid var(--color-error);
            color: #fff;
        }

        .payment-features {
            margin: 32px 0;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .payment-features ul {
            list-style: none;
        }

        .payment-features li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
        }

        .payment-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-secondary);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .category-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .category-score-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: var(--color-surface);
            border-radius: 8px;
        }

        .category-name {
            flex: 1;
            font-weight: 600;
        }
.overview-summary {display:none;}
        .category-score {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 2;
        }

        .score-bar {
            flex: 1;
            height: 12px;
            background: #380E68;
            border-radius: 6px;
    overflow: visible; /* Changed from hidden to visible */
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .score-bar-fill {
            height: 100%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(90deg, #FFA726 0%, #FF6F00 100%);
    border-radius: 6px;
    position: relative;
}
/* White circle indicator at the end of progress bar */
.score-bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border: 3px solid #1a1d2e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
        }

        .score-percentage {
            font-weight: 700;
    color: #FFFFFF;
            min-width: 50px;
    text-align: right;
    font-size: 1.1rem;
        }
        footer {
            
            color: white;
            padding: 32px 0;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-secondary);
        }

        .bloombox-link {
            color: var(--color-secondary);
            font-weight: 700;
            text-decoration: none;
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            flex-direction: column;
            color: white;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 5px solid var(--color-border);
            border-top: 5px solid var(--color-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .landing-content h1 {
                font-size: 2rem;
            }

            .methodology-steps {
                grid-template-columns: 1fr;
            }

            .rating-options {
                flex-direction: column;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                justify-items: center;
            }

            .rating-option {
                flex: 1;
                min-width: 100%;
            }

            .rating-number {
                display: block;
                font-size: 1rem;
                font-weight: 700;
                margin-bottom: 4px;
            }

            .rating-label {
                display: block;
                font-size: .61rem;
            }

            .rating-option label {
                display: block;
                padding: 11px;
                border: 2px solid var(--color-border);
                border-radius: 8px;
                text-align: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .overall-score {
                flex-direction: column;
            }

            .assessment-form {
                
                border-radius: 16px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            }

            .coupon-input-group {
                flex-direction: column;
            }

            .coupon-input-group .btn {
                width: 100%;
            }

            .price-display {
                font-size: 1.5rem;
            }

            .discounted-price {
                font-size: 1.8rem;
            }
        }
        .py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.bg-muted {
    background-color: hsl(var(--muted));
}
.border-primary\/20 {
    border-color: hsl(var(--primary) / .2);
}
.border {
    border-width: 1px;
}
.rounded-full {
    border-radius: 9999px;
}
.gap-2 {
    gap: .5rem;
}
.items-center {
    align-items: center;
}
.animate-fade-in-up {
    animation: fade-in-up .4s 
ease-out;
}
.inline-flex {
    display: inline-flex
;
}
.mb-8 {
    margin-bottom: 2rem;
}
.bg-gradient-primary {
    background-image: var(--gradient-primary);
}
.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}
*,:before,:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

*,:before,:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,:after {
    --tw-content: ""
}

html,:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
      font-family: 'Manrope', sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,strong {
    font-weight: bolder
}

code,kbd,samp,pre {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}
button,input,optgroup,select,textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0
}

button,select {
    text-transform: none
}

button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol,ul,menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button,[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,svg,video,canvas,audio,iframe,embed,object {
    display: block;
    vertical-align: middle
}

img,video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

:root {
    --background: 255 20% 6%;
    --foreground: 0 0% 98%;
    --card: 255 15% 10%;
    --card-foreground: 0 0% 98%;
    --popover: 255 15% 10%;
    --popover-foreground: 0 0% 98%;
    --primary: 255 85% 65%;
    --primary-foreground: 0 0% 100%;
    --secondary: 270 70% 50%;
    --secondary-foreground: 0 0% 100%;
    --muted: 255 15% 18%;
    --muted-foreground: 240 5% 65%;
    --accent: 270 100% 88%;
    --accent-foreground: 255 20% 10%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 255 20% 20%;
    --input: 255 20% 18%;
    --ring: 255 85% 65%;
    --radius: .75rem;
    --gradient-primary: linear-gradient(135deg, hsl(255, 85%, 65%) 0%, hsl(270, 70%, 50%) 100%);
    --gradient-glow: linear-gradient(135deg, hsl(255, 85%, 65% / .2) 0%, hsl(270, 70%, 50% / .2) 100%);
    --gradient-border: linear-gradient(135deg, hsl(255, 85%, 65%) 0%, hsl(270, 70%, 50%) 50%, hsl(290, 80%, 55%) 100%);
    --glow-primary: 0 0 40px hsl(255, 85%, 65% / .4);
    --glow-secondary: 0 0 60px hsl(270, 70%, 50% / .3);
    --transition-smooth: all .3s cubic-bezier(.4, 0, .2, 1);
    --sidebar-background: 255 15% 10%;
    --sidebar-foreground: 240 5% 85%;
    --sidebar-primary: 255 85% 65%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 255 15% 18%;
    --sidebar-accent-foreground: 240 5% 85%;
    --sidebar-border: 255 20% 20%;
    --sidebar-ring: 255 85% 65%
}

.dark {
    --background: 255 20% 6%;
    --foreground: 0 0% 98%;
    --card: 255 15% 10%;
    --card-foreground: 0 0% 98%;
    --popover: 255 15% 10%;
    --popover-foreground: 0 0% 98%;
    --primary: 255 85% 65%;
    --primary-foreground: 0 0% 100%;
    --secondary: 270 70% 50%;
    --secondary-foreground: 0 0% 100%;
    --muted: 255 15% 18%;
    --muted-foreground: 240 5% 65%;
    --accent: 270 100% 88%;
    --accent-foreground: 255 20% 10%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;
    --border: 255 20% 20%;
    --input: 255 20% 18%;
    --ring: 255 85% 65%;
    --sidebar-background: 255 15% 10%;
    --sidebar-foreground: 240 5% 85%;
    --sidebar-primary: 255 85% 65%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 255 15% 18%;
    --sidebar-accent-foreground: 240 5% 85%;
    --sidebar-border: 255 20% 20%;
    --sidebar-ring: 255 85% 65%
}

* {
    border-color: hsl(var(--border))
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground))
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem
}
@media (min-width: 1400px) {
    .container {
        max-width:1400px
    }
}

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

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: auto
}

.visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.inset-x-0 {
    left: 0;
    right: 0
}

.inset-y-0 {
    top: 0;
    bottom: 0
}

.-bottom-12 {
    bottom: -3rem
}

.-left-12 {
    left: -3rem
}

.-left-2 {
    left: -.5rem
}

.-right-12 {
    right: -3rem
}

.-top-12 {
    top: -3rem
}

.bottom-0 {
    bottom: 0
}

.bottom-1\/4 {
    bottom: 25%
}

.left-0 {
    left: 0
}

.left-1 {
    left: .25rem
}

.left-1\/2 {
    left: 50%
}

.left-1\/4 {
    left: 25%
}

.left-2 {
    left: .5rem
}

.left-\[50\%\] {
    left: 50%
}

.right-0 {
    right: 0
}

.right-1 {
    right: .25rem
}

.right-1\/4 {
    right: 25%
}

.right-2 {
    right: .5rem
}

.right-3 {
    right: .75rem
}

.right-4 {
    right: 1rem
}

.top-0 {
    top: 0
}

.top-1\.5 {
    top: .375rem
}

.top-1\/2 {
    top: 50%
}

.top-1\/4 {
    top: 25%
}

.top-2 {
    top: .5rem
}

.top-3\.5 {
    top: .875rem
}

.top-4 {
    top: 1rem
}

.top-\[1px\] {
    top: 1px
}

.top-\[50\%\] {
    top: 50%
}

.top-\[60\%\] {
    top: 60%
}

.top-full {
    top: 100%
}

.-z-10 {
    z-index: -10
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}
.z-20 {
    z-index: 20
}

.z-50 {
    z-index: 50
}

.z-\[100\] {
    z-index: 100
}

.z-\[1\] {
    z-index: 1
}

.col-span-1 {
    grid-column: span 1 / span 1
}

.-mx-1 {
    margin-left: -.25rem;
    margin-right: -.25rem
}

.mx-2 {
    margin-left: .5rem;
    margin-right: .5rem
}

.mx-3\.5 {
    margin-left: .875rem;
    margin-right: .875rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.my-0\.5 {
    margin-top: .125rem;
    margin-bottom: .125rem
}

.my-1 {
    margin-top: .25rem;
    margin-bottom: .25rem
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.-ml-4 {
    margin-left: -1rem
}

.-mt-4 {
    margin-top: -1rem
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-16 {
    margin-bottom: 4rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-auto {
    margin-left: auto
}

.mr-2 {
    margin-right: .5rem
}

.mt-1 {
    margin-top: .25rem
}

.mt-1\.5 {
    margin-top: .375rem
}

.mt-16 {
    margin-top: 4rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-24 {
    margin-top: 6rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-6 {
    margin-top: 1.5rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-auto {
    margin-top: auto
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.aspect-square {
    aspect-ratio: 1 / 1
}

.aspect-video {
    aspect-ratio: 16 / 9
}

.size-4 {
    width: 1rem;
    height: 1rem
}

.h-1 {
    height: .25rem
}
.h-1\.5 {
    height: .375rem
}

.h-10 {
    height: 2.5rem
}

.h-11 {
    height: 2.75rem
}

.h-12 {
    width: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-2 {
    height: .5rem
}

.h-2\.5 {
    height: .625rem
}

.h-24 {
    height: 6rem
}

.h-3 {
    height: .75rem
}

.h-3\.5 {
    height: .875rem
}

.h-32 {
    height: 8rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-96 {
    height: 24rem
}

.h-\[1px\] {
    height: 1px
}

.h-\[500px\] {
    height: 500px
}

.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
    height: var(--radix-navigation-menu-viewport-height)
}

.h-\[var\(--radix-select-trigger-height\)\] {
    height: var(--radix-select-trigger-height)
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-px {
    height: 1px
}

.h-svh {
    height: 100svh
}

.max-h-96 {
    max-height: 24rem
}

.max-h-\[300px\] {
    max-height: 300px
}

.max-h-screen {
    max-height: 100vh
}

.min-h-0 {
    min-height: 0px
}

.min-h-\[80px\] {
    min-height: 80px
}

.min-h-screen {
    min-height: 100vh
}

.min-h-svh {
    min-height: 100svh
}

.w-0 {
    width: 0px
}

.w-1 {
    width: .25rem
}

.w-1\.5 {
    width: .375rem
}

.w-10 {
    width: 2.5rem
}

.w-11 {
    width: 2.75rem
}

.w-12 {
    width: 3rem
}

.w-14 {
    width: 3.5rem
}

.w-2 {
    width: .5rem
}

.w-2\.5 {
    width: .625rem
}

.w-3 {
    width: .75rem
}

.w-3\.5 {
    width: .875rem
}

.w-3\/4 {
    width: 75%
}

.w-32 {
    width: 8rem
}

.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6 {
    width: 1.5rem
}

.w-64 {
    width: 16rem
}
.w-7 {
    width: 1.75rem
}

.w-72 {
    width: 18rem
}

.w-8 {
    width: 2rem
}

.w-9 {
    width: 2.25rem
}

.w-96 {
    width: 24rem
}

.w-\[--sidebar-width\] {
    width: var(--sidebar-width)
}

.w-\[100px\] {
    width: 100px
}

.w-\[1px\] {
    width: 1px
}

.w-\[500px\] {
    width: 500px
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.w-max {
    width: -moz-max-content;
    width: max-content
}

.w-px {
    width: 1px
}

.min-w-0 {
    min-width: 0px
}

.min-w-5 {
    min-width: 1.25rem
}

.min-w-\[12rem\] {
    min-width: 12rem
}

.min-w-\[8rem\] {
    min-width: 8rem
}

.min-w-\[var\(--radix-select-trigger-width\)\] {
    min-width: var(--radix-select-trigger-width)
}

.max-w-2xl {
    max-width: 42rem
}

.max-w-3xl {
    max-width: 48rem
}

.max-w-4xl {
    max-width: 56rem
}

.max-w-5xl {
    max-width: 64rem
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-\[--skeleton-width\] {
    max-width: var(--skeleton-width)
}

.max-w-lg {
    max-width: 32rem
}

.max-w-max {
    max-width: -moz-max-content;
    max-width: max-content
}

.max-w-xl {
    max-width: 36rem
}

.max-w-xs {
    max-width: 20rem
}

.flex-1 {
    flex: 1 1 0%
}

.flex-shrink-0,.shrink-0 {
    flex-shrink: 0
}

.grow {
    flex-grow: 1
}

.grow-0 {
    flex-grow: 0
}

.basis-full {
    flex-basis: 100%
}

.caption-bottom {
    caption-side: bottom
}

.border-collapse {
    border-collapse: collapse
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-x-px {
    --tw-translate-x: -1px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-\[-50\%\] {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-x-px {
    --tw-translate-x: 1px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.translate-y-\[-50\%\] {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-45 {
    --tw-rotate: 45deg;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.rotate-90 {
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}
.animate-fade-in {
    animation: fade-in .6s ease-out
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-in-up {
    animation: fade-in-up .4s ease-out
}

@keyframes float {
    0%,to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

@keyframes glow {
    0%,to {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite
}

.cursor-default {
    cursor: default
}

.cursor-pointer {
    cursor: pointer
}

.touch-none {
    touch-action: none
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.list-none {
    list-style-type: none
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.flex-row {
    flex-direction: row
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-end {
    align-items: flex-end
}

.items-center {
    align-items: center
}

.items-stretch {
    align-items: stretch
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-1 {
    gap: .25rem
}

.gap-1\.5 {
    gap: .375rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.space-x-1>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(.25rem * var(--tw-space-x-reverse));
    margin-left: calc(.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-x-4>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-1>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.25rem * var(--tw-space-y-reverse))
}

.space-y-1\.5>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.375rem * var(--tw-space-y-reverse))
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse))
}

.space-y-3>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.75rem * var(--tw-space-y-reverse))
}

.space-y-4>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}

.space-y-6>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse))
}
.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-x-hidden {
    overflow-x: hidden
}

.whitespace-nowrap {
    white-space: nowrap
}

.break-words {
    overflow-wrap: break-word
}

.rounded-2xl {
    border-radius: 1rem
}

.rounded-3xl {
    border-radius: 1.5rem
}

.rounded-\[2px\] {
    border-radius: 2px
}

.rounded-\[inherit\] {
    border-radius: inherit
}

.rounded-full {
    border-radius: 9999px
}

.rounded-lg {
    border-radius: var(--radius)
}

.rounded-md {
    border-radius: calc(var(--radius) - 2px)
}

.rounded-sm {
    border-radius: calc(var(--radius) - 4px)
}

.rounded-xl {
    border-radius: .75rem
}

.rounded-t-\[10px\] {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.rounded-tl-sm {
    border-top-left-radius: calc(var(--radius) - 4px)
}

.border {
    border-width: 1px
}

.border-2 {
    border-width: 2px
}

.border-\[1\.5px\] {
    border-width: 1.5px
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px
}

.border-b {
    border-bottom-width: 1px
}

.border-l {
    border-left-width: 1px
}

.border-l-2 {
    border-left-width: 2px
}

.border-r {
    border-right-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-dashed {
    border-style: dashed
}

.border-\[--color-border\] {
    border-color: var(--color-border)
}

.border-blue-500\/20 {
    border-color: #3b82f633
}

.border-border {
    border-color: #2e293d;
}

.border-border\/40 {
    border-color: hsl(var(--border) / .4)
}

.border-border\/50 {
    border-color: hsl(var(--border) / .5)
}

.border-destructive {
    border-color: hsl(var(--destructive))
}

.border-destructive\/50 {
    border-color: hsl(var(--destructive) / .5)
}

.border-input {
    border-color: hsl(var(--input))
}

.border-primary {
    border-color: hsl(var(--primary))
}

.border-primary\/20 {
    border-color: hsl(var(--primary) / .2)
}

.border-primary\/30 {
    border-color: hsl(var(--primary) / .3)
}

.border-red-500\/20 {
    border-color: #ef444433
}

.border-sidebar-border {
    border-color: hsl(var(--sidebar-border))
}

.border-transparent {
    border-color: transparent
}

.border-yellow-500\/20 {
    border-color: #FFC40033
}

.border-l-transparent {
    border-left-color: transparent
}

.border-t-transparent {
    border-top-color: transparent
}

.bg-\[--color-bg\] {
    background-color: var(--color-bg)
}

.bg-accent {
    background-color: hsl(var(--accent))
}

.bg-background {
    background-color: hsl(var(--background))
}

.bg-black\/80 {
    background-color: #000c
}

.bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1))
}
.bg-blue-500\/20 {
    background-color: #3b82f633
}

.bg-blue-500\/5 {
    background-color: #3b82f60d
}

.bg-border {
    background-color: hsl(var(--border))
}

.bg-card {
    background-color: hsl(var(--card))
}

.bg-card\/50 {
    background-color: hsl(var(--card) / .5)
}

.bg-destructive {
    background-color: hsl(var(--destructive))
}

.bg-foreground {
    background-color: hsl(var(--foreground))
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1))
}

.bg-muted {
    background-color: hsl(var(--muted))
}

.bg-muted\/30 {
    background-color: hsl(var(--muted) / .3)
}

.bg-muted\/50 {
    background-color: hsl(var(--muted) / .5)
}

.bg-popover {
    background-color: hsl(var(--popover))
}

.bg-primary {
    background-color: hsl(var(--primary))
}

.bg-primary\/10 {
    background-color: hsl(var(--primary) / .1)
}

.bg-primary\/20 {
    background-color: hsl(var(--primary) / .2)
}

.bg-primary\/5 {
    background-color: hsl(var(--primary) / .05)
}

.bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1))
}

.bg-red-500\/20 {
    background-color: #ef444433
}

.bg-red-500\/5 {
    background-color: #ef44440d
}

.bg-secondary {
    background-color: hsl(var(--secondary))
}

.bg-secondary\/10 {
    background-color: hsl(var(--secondary) / .1)
}

.bg-secondary\/20 {
    background-color: hsl(var(--secondary) / .2)
}

.bg-sidebar {
    background-color: hsl(var(--sidebar-background))
}

.bg-sidebar-border {
    background-color: hsl(var(--sidebar-border))
}

.bg-transparent {
    background-color: transparent
}

.bg-yellow-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1))
}

.bg-yellow-500\/20 {
    background-color: #FFC40033
}

.bg-yellow-500\/5 {
    background-color: #FFC4000d
}

.bg-gradient-primary {
    background-image: var(--gradient-primary)
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom,var(--tw-gradient-stops))
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top,var(--tw-gradient-stops))
}

.from-background {
    --tw-gradient-from: hsl(var(--background)) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.from-background\/50 {
    --tw-gradient-from: hsl(var(--background) / .5) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)
}

.via-background\/80 {
    --tw-gradient-to: hsl(var(--background) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), hsl(var(--background) / .8) var(--tw-gradient-via-position), var(--tw-gradient-to)
}

.to-background {
    --tw-gradient-to: hsl(var(--background)) var(--tw-gradient-to-position)
}

.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position)
}

.fill-current {
    fill: currentColor
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-12 {
    padding: 3rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}
.p-\[1px\] {
    padding: 1px
}

.px-1 {
    padding-left: .25rem;
    padding-right: .25rem
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-2\.5 {
    padding-left: .625rem;
    padding-right: .625rem
}

.px-3 {
    padding-left: .75rem;
    padding-right: .75rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem
}

.py-0\.5 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.py-1 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.py-1\.5 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pb-4 {
    padding-bottom: 1rem
}

.pb-8 {
    padding-bottom: 2rem
}

.pl-2\.5 {
    padding-left: .625rem
}

.pl-4 {
    padding-left: 1rem
}

.pl-8 {
    padding-left: 2rem
}

.pr-2 {
    padding-right: .5rem
}

.pr-2\.5 {
    padding-right: .625rem
}

.pr-8 {
    padding-right: 2rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: .25rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-8 {
    padding-top: 2rem
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.align-middle {
    vertical-align: middle
}

.font-mono {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1
}
.text-7xl {
    font-size: 4.5rem;
    line-height: 1
}

.text-\[0\.8rem\] {
    font-size: .8rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.leading-none {
    line-height: 1
}

.tracking-tight {
    letter-spacing: -.025em
}

.tracking-wide {
    letter-spacing: .025em
}

.tracking-widest {
    letter-spacing: .1em
}

.text-accent-foreground {
    color: hsl(var(--accent-foreground))
}

.text-blue-500 {
    --tw-text-opacity: 1;
    color: rgb(59 130 246 / var(--tw-text-opacity, 1))
}

.text-card-foreground {
    color: hsl(var(--card-foreground))
}

.text-current {
    color: currentColor
}

.text-destructive {
    color: hsl(var(--destructive))
}

.text-destructive-foreground {
    color: hsl(var(--destructive-foreground))
}

.text-foreground {
    color: hsl(var(--foreground))
}

.text-foreground\/50 {
    color: hsl(var(--foreground) / .5)
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1))
}

.text-muted-foreground {
    color: #a1a1aa;
}

.text-orange-500 {
    --tw-text-opacity: 1;
    color: rgb(249 115 22 / var(--tw-text-opacity, 1))
}

.text-popover-foreground {
    color: hsl(var(--popover-foreground))
}

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

.text-primary-foreground {
    color: hsl(var(--primary-foreground))
}

.text-primary\/10 {
    color: hsl(var(--primary) / .1)
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1))
}

.text-secondary-foreground {
    color: hsl(var(--secondary-foreground))
}

.text-sidebar-foreground {
    color: hsl(var(--sidebar-foreground))
}

.text-sidebar-foreground\/70 {
    color: hsl(var(--sidebar-foreground) / .7)
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.text-yellow-500 {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1))
}

.underline {
    text-decoration-line: underline
}

.underline-offset-4 {
    text-underline-offset: 4px
}

.opacity-0 {
    opacity: 0
}

.opacity-20 {
    opacity: .2
}

.opacity-40 {
    opacity: .4
}

.opacity-50 {
    opacity: .5
}

.opacity-60 {
    opacity: .6
}
.opacity-70 {
    opacity: .7
}

.opacity-90 {
    opacity: .9
}

.shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
    --tw-shadow: 0 0 0 1px hsl(var(--sidebar-border));
    --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.outline {
    outline-style: solid
}

.ring-0 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.ring-2 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.ring-ring {
    --tw-ring-color: hsl(var(--ring))
}

.ring-sidebar-ring {
    --tw-ring-color: hsl(var(--sidebar-ring))
}

.ring-offset-background {
    --tw-ring-offset-color: hsl(var(--background))
}

.blur-3xl {
    --tw-blur: blur(64px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}

.transition {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-\[left\,right\,width\] {
    transition-property: left,right,width;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-\[margin\,opa\] {
    transition-property: margin,opa;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-\[width\,height\,padding\] {
    transition-property: width,height,padding;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-\[width\] {
    transition-property: width;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.duration-1000 {
    transition-duration: 1s
}

.duration-200 {
    transition-duration: .2s
}

.duration-300 {
    transition-duration: .3s
}

.duration-500 {
    transition-duration: .5s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1)
}

.ease-linear {
    transition-timing-function: linear
}

@keyframes enter {
    0% {
        opacity: var(--tw-enter-opacity, 1);
        transform: translate3d(var(--tw-enter-translate-x, 0),var(--tw-enter-translate-y, 0),0) scale3d(var(--tw-enter-scale, 1),var(--tw-enter-scale, 1),var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0))
    }
}

@keyframes exit {
    to {
        opacity: var(--tw-exit-opacity, 1);
        transform: translate3d(var(--tw-exit-translate-x, 0),var(--tw-exit-translate-y, 0),0) scale3d(var(--tw-exit-scale, 1),var(--tw-exit-scale, 1),var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0))
    }
}

.animate-in {
    animation-name: enter;
    animation-duration: .15s;
    --tw-enter-opacity: initial;
    --tw-enter-scale: initial;
    --tw-enter-rotate: initial;
    --tw-enter-translate-x: initial;
    --tw-enter-translate-y: initial
}

.fade-in-0 {
    --tw-enter-opacity: 0
}
.fade-in-80 {
    --tw-enter-opacity: .8
}

.zoom-in-95 {
    --tw-enter-scale: .95
}

.duration-1000 {
    animation-duration: 1s
}

.duration-200 {
    animation-duration: .2s
}

.duration-300 {
    animation-duration: .3s
}

.duration-500 {
    animation-duration: .5s
}

.ease-in-out {
    animation-timing-function: cubic-bezier(.4,0,.2,1)
}

.ease-linear {
    animation-timing-function: linear
}

.glow-primary {
    box-shadow: var(--glow-primary)
}

.gradient-border {
    position: relative;
    background: hsl(var(--card))
}

/*.gradient-border:before {
    content: ""; 
    position: absolute; 
    top: 0;
    right: 0; 
    bottom: 0;
    left: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-border);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude
}
*/
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.file\:border-0::file-selector-button {
    border-width: 0px
}

.file\:bg-transparent::file-selector-button {
    background-color: transparent
}

.file\:text-sm::file-selector-button {
    font-size: .875rem;
    line-height: 1.25rem
}

.file\:font-medium::file-selector-button {
    font-weight: 500
}

.file\:text-foreground::file-selector-button {
    color: hsl(var(--foreground))
}

.placeholder\:text-muted-foreground::-moz-placeholder {
    color: hsl(var(--muted-foreground))
}

.placeholder\:text-muted-foreground::placeholder {
    color: hsl(var(--muted-foreground))
}

.after\:absolute:after {
    content: var(--tw-content);
    position: absolute
}

.after\:-inset-2:after {
    content: var(--tw-content);
    top: -.5rem;
    right: -.5rem;
    bottom: -.5rem;
    left: -.5rem
}

.after\:inset-y-0:after {
    content: var(--tw-content);
    top: 0;
    bottom: 0
}

.after\:left-1\/2:after {
    content: var(--tw-content);
    left: 50%
}

.after\:w-1:after {
    content: var(--tw-content);
    width: .25rem
}

.after\:w-\[2px\]:after {
    content: var(--tw-content);
    width: 2px
}

.after\:-translate-x-1\/2:after {
    content: var(--tw-content);
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.first\:rounded-l-md:first-child {
    border-top-left-radius: calc(var(--radius) - 2px);
    border-bottom-left-radius: calc(var(--radius) - 2px)
}

.first\:border-l:first-child {
    border-left-width: 1px
}

.last\:rounded-r-md:last-child {
    border-top-right-radius: calc(var(--radius) - 2px);
    border-bottom-right-radius: calc(var(--radius) - 2px)
}

.focus-within\:relative:focus-within {
    position: relative
}

.focus-within\:z-20:focus-within {
    z-index: 20
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.hover\:border-primary:hover {
    border-color: hsl(var(--primary))
}

.hover\:border-primary\/50:hover {
    border-color: hsl(var(--primary) / .5)
}

.hover\:bg-accent:hover {
    background-color: hsl(var(--accent))
}

.hover\:bg-destructive\/80:hover {
    background-color: hsl(var(--destructive) / .8)
}

.hover\:bg-destructive\/90:hover {
    background-color: hsl(var(--destructive) / .9)
}

.hover\:bg-muted:hover {
    background-color: hsl(var(--muted))
}

.hover\:bg-muted\/50:hover {
    background-color: hsl(var(--muted) / .5)
}

.hover\:bg-primary:hover {
    background-color: hsl(var(--primary))
}

.hover\:bg-primary\/10:hover {
    background-color: hsl(var(--primary) / .1)
}

.hover\:bg-primary\/80:hover {
    background-color: hsl(var(--primary) / .8)
}
.hover\:bg-primary\/90:hover {
    background-color: hsl(var(--primary) / .9)
}

.hover\:bg-secondary:hover {
    background-color: hsl(var(--secondary))
}

.hover\:bg-secondary\/80:hover {
    background-color: hsl(var(--secondary) / .8)
}

.hover\:bg-sidebar-accent:hover {
    background-color: hsl(var(--sidebar-accent))
}

.hover\:text-accent-foreground:hover {
    color: #fff;
}

.hover\:text-blue-700:hover {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1))
}

.hover\:text-foreground:hover {
    color: hsl(var(--foreground))
}

.hover\:text-muted-foreground:hover {
    color: hsl(var(--muted-foreground))
}

.hover\:text-primary:hover {
    color: hsl(var(--primary))
}

.hover\:text-primary-foreground:hover {
    color: hsl(var(--primary-foreground))
}

.hover\:text-sidebar-accent-foreground:hover {
    color: hsl(var(--sidebar-accent-foreground))
}

.hover\:underline:hover {
    text-decoration-line: underline
}

.hover\:opacity-100:hover {
    opacity: 1
}

.hover\:shadow-2xl:hover {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover {
    --tw-shadow: 0 0 0 1px hsl(var(--sidebar-accent));
    --tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);
}

.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.hover\:shadow-primary\/50:hover {
    --tw-shadow-color: hsl(var(--primary) / .5);
    --tw-shadow: var(--tw-shadow-colored)
}

.hover\:after\:bg-sidebar-border:hover:after {
    content: var(--tw-content);
    background-color: hsl(var(--sidebar-border))
}

.focus\:bg-accent:focus {
    background-color: hsl(var(--accent))
}

.focus\:bg-primary:focus {
    background-color: hsl(var(--primary))
}

.focus\:text-accent-foreground:focus {
    color: hsl(var(--accent-foreground))
}

.focus\:text-primary-foreground:focus {
    color: hsl(var(--primary-foreground))
}

.focus\:opacity-100:focus {
    opacity: 1
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.focus\:ring-ring:focus {
    --tw-ring-color: hsl(var(--ring))
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus-visible\:ring-1:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.focus-visible\:ring-2:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: hsl(var(--ring))
}

.focus-visible\:ring-sidebar-ring:focus-visible {
    --tw-ring-color: hsl(var(--sidebar-ring))
}

.focus-visible\:ring-offset-1:focus-visible {
    --tw-ring-offset-width: 1px
}

.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px
}

.focus-visible\:ring-offset-background:focus-visible {
    --tw-ring-offset-color: hsl(var(--background))
}

.active\:bg-sidebar-accent:active {
    background-color: hsl(var(--sidebar-accent))
}

.active\:text-sidebar-accent-foreground:active {
    color: hsl(var(--sidebar-accent-foreground))
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed
}

.disabled\:opacity-50:disabled {
    opacity: .5
}

.group\/menu-item:focus-within .group-focus-within\/menu-item\:opacity-100 {
    opacity: 1
}

.group:hover .group-hover\:translate-x-1 {
    --tw-translate-x: .25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:scale-110 {
    --tw-scale-x: 1.1;
    --tw-scale-y: 1.1;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.group:hover .group-hover\:text-primary\/20 {
    color: hsl(var(--primary) / .2)
}

.group\/menu-item:hover .group-hover\/menu-item\:opacity-100,.group:hover .group-hover\:opacity-100 {
    opacity: 1
}
.group.destructive .group-\[\.destructive\]\:border-muted\/40 {
    border-color: hsl(var(--muted) / .4)
}

.group.toaster .group-\[\.toaster\]\:border-border {
    border-color: hsl(var(--border))
}

.group.toast .group-\[\.toast\]\:bg-muted {
    background-color: hsl(var(--muted))
}

.group.toast .group-\[\.toast\]\:bg-primary {
    background-color: hsl(var(--primary))
}

.group.toaster .group-\[\.toaster\]\:bg-background {
    background-color: hsl(var(--background))
}

.group.destructive .group-\[\.destructive\]\:text-red-300 {
    --tw-text-opacity: 1;
    color: rgb(252 165 165 / var(--tw-text-opacity, 1))
}

.group.toast .group-\[\.toast\]\:text-muted-foreground {
    color: hsl(var(--muted-foreground))
}

.group.toast .group-\[\.toast\]\:text-primary-foreground {
    color: hsl(var(--primary-foreground))
}

.group.toaster .group-\[\.toaster\]\:text-foreground {
    color: hsl(var(--foreground))
}

.group.toaster .group-\[\.toaster\]\:shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.group.destructive .group-\[\.destructive\]\:hover\:border-destructive\/30:hover {
    border-color: hsl(var(--destructive) / .3)
}

.group.destructive .group-\[\.destructive\]\:hover\:bg-destructive:hover {
    background-color: hsl(var(--destructive))
}

.group.destructive .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover {
    color: hsl(var(--destructive-foreground))
}

.group.destructive .group-\[\.destructive\]\:hover\:text-red-50:hover {
    --tw-text-opacity: 1;
    color: rgb(254 242 242 / var(--tw-text-opacity, 1))
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-destructive:focus {
    --tw-ring-color: hsl(var(--destructive))
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-red-400:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity, 1))
}

.group.destructive .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus {
    --tw-ring-offset-color: #dc2626
}

.peer\/menu-button:hover~.peer-hover\/menu-button\:text-sidebar-accent-foreground {
    color: hsl(var(--sidebar-accent-foreground))
}

.peer:disabled~.peer-disabled\:cursor-not-allowed {
    cursor: not-allowed
}

.peer:disabled~.peer-disabled\:opacity-70 {
    opacity: .7
}

.has-\[\[data-variant\=inset\]\]\:bg-sidebar:has([data-variant=inset]) {
    background-color: hsl(var(--sidebar-background))
}

.has-\[\:disabled\]\:opacity-50:has(:disabled) {
    opacity: .5
}

.group\/menu-item:has([data-sidebar=menu-action]) .group-has-\[\[data-sidebar\=menu-action\]\]\/menu-item\:pr-8 {
    padding-right: 2rem
}

.aria-disabled\:pointer-events-none[aria-disabled=true] {
    pointer-events: none
}

.aria-disabled\:opacity-50[aria-disabled=true] {
    opacity: .5
}

.aria-selected\:bg-accent[aria-selected=true] {
    background-color: hsl(var(--accent))
}

.aria-selected\:bg-accent\/50[aria-selected=true] {
    background-color: hsl(var(--accent) / .5)
}

.aria-selected\:text-accent-foreground[aria-selected=true] {
    color: hsl(var(--accent-foreground))
}

.aria-selected\:text-muted-foreground[aria-selected=true] {
    color: hsl(var(--muted-foreground))
}

.aria-selected\:opacity-100[aria-selected=true] {
    opacity: 1
}

.aria-selected\:opacity-30[aria-selected=true] {
    opacity: .3
}

.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true],.data-\[disabled\]\:pointer-events-none[data-disabled] {
    pointer-events: none
}

.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction=vertical] {
    height: 1px
}

.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction=vertical] {
    width: 100%
}

.data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
    --tw-translate-y: .25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[side\=left\]\:-translate-x-1[data-side=left] {
    --tw-translate-x: -.25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[side\=right\]\:translate-x-1[data-side=right] {
    --tw-translate-x: .25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[side\=top\]\:-translate-y-1[data-side=top] {
    --tw-translate-y: -.25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[state\=checked\]\:translate-x-5[data-state=checked] {
    --tw-translate-x: 1.25rem;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked],.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end] {
    --tw-translate-x: var(--radix-toast-swipe-end-x);
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move] {
    --tw-translate-x: var(--radix-toast-swipe-move-x);
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes accordion-up {
    0% {
        height: var(--radix-accordion-content-height)
    }

    to {
        height: 0
    }
}

.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
    animation: accordion-up .2s ease-out
}
@keyframes accordion-down {
    0% {
        height: 0
    }

    to {
        height: var(--radix-accordion-content-height)
    }
}

.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
    animation: accordion-down .2s ease-out
}

.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction=vertical] {
    flex-direction: column
}

.data-\[active\=true\]\:bg-sidebar-accent[data-active=true] {
    background-color: hsl(var(--sidebar-accent))
}

.data-\[active\]\:bg-accent\/50[data-active] {
    background-color: hsl(var(--accent) / .5)
}

.data-\[selected\=\'true\'\]\:bg-accent[data-selected=true]{background-color:hsl(var(--accent))}.data-\[state\=active\]\:bg-background[data-state=active]{background-color:hsl(var(--background))}.data-\[state\=checked\]\:bg-primary[data-state=checked]{background-color:hsl(var(--primary))}.data-\[state\=on\]\:bg-accent[data-state=on],.data-\[state\=open\]\:bg-accent[data-state=open]{background-color:hsl(var(--accent))}.data-\[state\=open\]\:bg-accent\/50[data-state=open]{background-color:hsl(var(--accent) / .5)}.data-\[state\=open\]\:bg-secondary[data-state=open]{background-color:hsl(var(--secondary))}.data-\[state\=selected\]\:bg-muted[data-state=selected]{background-color:hsl(var(--muted))}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]{background-color:hsl(var(--input))}.data-\[active\=true\]\:font-medium[data-active=true]{font-weight:500}.data-\[active\=true\]\:text-sidebar-accent-foreground[data-active=true]{color:hsl(var(--sidebar-accent-foreground))}.data-\[selected\=true\]\:text-accent-foreground[data-selected=true]{color:hsl(var(--accent-foreground))}.data-\[state\=active\]\:text-foreground[data-state=active]{color:hsl(var(--foreground))}.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]{color:hsl(var(--primary-foreground))}.data-\[state\=on\]\:text-accent-foreground[data-state=on],.data-\[state\=open\]\:text-accent-foreground[data-state=open]{color:hsl(var(--accent-foreground))}.data-\[state\=open\]\:text-muted-foreground[data-state=open]{color:hsl(var(--muted-foreground))}.data-\[disabled\=true\]\:opacity-50[data-disabled=true],.data-\[disabled\]\:opacity-50[data-disabled]{opacity:.5}.data-\[state\=open\]\:opacity-100[data-state=open]{opacity:1}.data-\[state\=active\]\:shadow-sm[data-state=active]{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.data-\[swipe\=move\]\:transition-none[data-swipe=move]{transition-property:none}.data-\[state\=closed\]\:duration-300[data-state=closed]{transition-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{transition-duration:.5s}.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-],.data-\[state\=open\]\:animate-in[data-state=open],.data-\[state\=visible\]\:animate-in[data-state=visible]{animation-name:enter;animation-duration:.15s;--tw-enter-opacity: initial;--tw-enter-scale: initial;--tw-enter-rotate: initial;--tw-enter-translate-x: initial;--tw-enter-translate-y: initial}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-],.data-\[state\=closed\]\:animate-out[data-state=closed],.data-\[state\=hidden\]\:animate-out[data-state=hidden],.data-\[swipe\=end\]\:animate-out[data-swipe=end]{animation-name:exit;animation-duration:.15s;--tw-exit-opacity: initial;--tw-exit-scale: initial;--tw-exit-rotate: initial;--tw-exit-translate-x: initial;--tw-exit-translate-y: initial}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-]{--tw-enter-opacity: 0}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-],.data-\[state\=closed\]\:fade-out-0[data-state=closed]{--tw-exit-opacity: 0}.data-\[state\=closed\]\:fade-out-80[data-state=closed]{--tw-exit-opacity: .8}.data-\[state\=hidden\]\:fade-out[data-state=hidden]{--tw-exit-opacity: 0}.data-\[state\=open\]\:fade-in-0[data-state=open],.data-\[state\=visible\]\:fade-in[data-state=visible]{--tw-enter-opacity: 0}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]{--tw-exit-scale: .95}.data-\[state\=open\]\:zoom-in-90[data-state=open]{--tw-enter-scale: .9}.data-\[state\=open\]\:zoom-in-95[data-state=open]{--tw-enter-scale: .95}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]{--tw-enter-translate-x: 13rem}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]{--tw-enter-translate-x: -13rem}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]{--tw-exit-translate-x: 13rem}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]{--tw-exit-translate-x: -13rem}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]{--tw-enter-translate-y: -.5rem}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]{--tw-enter-translate-x: .5rem}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]{--tw-enter-translate-x: -.5rem}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]{--tw-enter-translate-y: .5rem}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]{--tw-exit-translate-y: 100%}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]{--tw-exit-translate-x: -100%}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]{--tw-exit-translate-x: -50%}.data-\[state\=closed\]\:slide-out-to-right[data-state=closed],.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed]{--tw-exit-translate-x: 100%}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]{--tw-exit-translate-y: -100%}.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]{--tw-exit-translate-y: -48%}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]{--tw-enter-translate-y: 100%}.data-\[state\=open\]\:slide-in-from-left[data-state=open]{--tw-enter-translate-x: -100%}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]{--tw-enter-translate-x: -50%}.data-\[state\=open\]\:slide-in-from-right[data-state=open]{--tw-enter-translate-x: 100%}.data-\[state\=open\]\:slide-in-from-top[data-state=open]{--tw-enter-translate-y: -100%}.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]{--tw-enter-translate-y: -48%}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open]{--tw-enter-translate-y: -100%}.data-\[state\=closed\]\:duration-300[data-state=closed]{animation-duration:.3s}.data-\[state\=open\]\:duration-500[data-state=open]{animation-duration:.5s}.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction=vertical]:after{content:var(--tw-content);left:0}.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction=vertical]:after{content:var(--tw-content);height:.25rem}.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction=vertical]:after{content:var(--tw-content);width:100%}.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction=vertical]:after{content:var(--tw-content);--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction=vertical]:after{content:var(--tw-content);--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[state\=open\]\:hover\:bg-sidebar-accent:hover[data-state=open]{background-color:hsl(var(--sidebar-accent))}.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground:hover[data-state=open]{color:hsl(var(--sidebar-accent-foreground))}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]{left:calc(var(--sidebar-width) * -1)}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]{right:calc(var(--sidebar-width) * -1)}.group[data-side=left] .group-data-\[side\=left\]\:-right-4{right:-1rem}.group[data-side=right] .group-data-\[side\=right\]\:left-0{left:0}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:-mt-8{margin-top:-2rem}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:hidden{display:none}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!size-8{width:2rem!important;height:2rem!important}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[--sidebar-width-icon\]{width:var(--sidebar-width-icon)}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\]{width:calc(var(--sidebar-width-icon) + 1rem)}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\]{width:calc(var(--sidebar-width-icon) + 1rem + 2px)}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:w-0{width:0px}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group[data-side=right] .group-data-\[side\=right\]\:rotate-180,.group[data-state=open] .group-data-\[state\=open\]\:rotate-180{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:overflow-hidden{overflow:hidden}.group[data-variant=floating] .group-data-\[variant\=floating\]\:rounded-lg{border-radius:var(--radius)}.group[data-variant=floating] .group-data-\[variant\=floating\]\:border{border-width:1px}.group[data-side=left] .group-data-\[side\=left\]\:border-r{border-right-width:1px}.group[data-side=right] .group-data-\[side\=right\]\:border-l{border-left-width:1px}.group[data-variant=floating] .group-data-\[variant\=floating\]\:border-sidebar-border{border-color:hsl(var(--sidebar-border))}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!p-0{padding:0!important}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:\!p-2{padding:.5rem!important}.group[data-collapsible=icon] .group-data-\[collapsible\=icon\]\:opacity-0{opacity:0}.group[data-variant=floating] .group-data-\[variant\=floating\]\:shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:after\:left-full:after{content:var(--tw-content);left:100%}.group[data-collapsible=offcanvas] .group-data-\[collapsible\=offcanvas\]\:hover\:bg-sidebar:hover{background-color:hsl(var(--sidebar-background))}.peer\/menu-button[data-size=default]~.peer-data-\[size\=default\]\/menu-button\:top-1\.5{top:.375rem}.peer\/menu-button[data-size=lg]~.peer-data-\[size\=lg\]\/menu-button\:top-2\.5{top:.625rem}.peer\/menu-button[data-size=sm]~.peer-data-\[size\=sm\]\/menu-button\:top-1{top:.25rem}.peer[data-variant=inset]~.peer-data-\[variant\=inset\]\:min-h-\[calc\(100svh-theme\(spacing\.4\)\)\]{min-height:calc(100svh - 1rem)}.peer\/menu-button[data-active=true]~.peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground{color:hsl(var(--sidebar-accent-foreground))}.dark\:border-destructive:is(.dark *){border-color:hsl(var(--destructive))}@media (min-width: 640px){.sm\:bottom-0{bottom:0}.sm\:right-0{right:0}.sm\:top-auto{top:auto}.sm\:mt-0{margin-top:0}.sm\:flex{display:flex}.sm\:max-w-sm{max-width:24rem}.sm\:flex-row{flex-direction:row}.sm\:flex-col{flex-direction:column}.sm\:justify-end{justify-content:flex-end}.sm\:gap-2\.5{gap:.625rem}.sm\:space-x-2>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(.5rem * var(--tw-space-x-reverse));margin-left:calc(.5rem * calc(1 - var(--tw-space-x-reverse)))}.sm\:space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse: 0;margin-right:calc(1rem * var(--tw-space-x-reverse));margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)))}.sm\:space-y-0>:not([hidden])~:not([hidden]){--tw-space-y-reverse: 0;margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0px * var(--tw-space-y-reverse))}.sm\:rounded-lg{border-radius:var(--radius)}.sm\:text-left{text-align:left}.data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open]{--tw-enter-translate-y: 100%}}@media (min-width: 768px){.md\:absolute{position:absolute}.md\:col-span-2{grid-column:span 2 / span 2}.md\:block{display:block}.md\:flex{display:flex}.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]{width:var(--radix-navigation-menu-viewport-width)}.md\:w-auto{width:auto}.md\:max-w-\[420px\]{max-width:420px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:p-12{padding:3rem}.md\:text-2xl{font-size:1.5rem;line-height:2rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-5xl{font-size:3rem;line-height:1}.md\:text-7xl{font-size:4.5rem;line-height:1}.md\:text-8xl{font-size:6rem;line-height:1}.md\:text-sm{font-size:.875rem;line-height:1.25rem}.md\:opacity-0{opacity:0}.after\:md\:hidden:after{content:var(--tw-content);display:none}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:m-2{margin:.5rem}.peer[data-state=collapsed][data-variant=inset]~.md\:peer-data-\[state\=collapsed\]\:peer-data-\[variant\=inset\]\:ml-2{margin-left:.5rem}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:ml-0{margin-left:0}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:rounded-xl{border-radius:.75rem}.peer[data-variant=inset]~.md\:peer-data-\[variant\=inset\]\:shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}}@media (min-width: 1024px){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:text-3xl{font-size:1.875rem;line-height:2.25rem}.lg\:text-8xl{font-size:6rem;line-height:1}}.\[\&\:has\(\[aria-selected\]\)\]\:bg-accent:has([aria-selected]){background-color:hsl(var(--accent))}.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child{border-top-left-radius:calc(var(--radius) - 2px);border-bottom-left-radius:calc(var(--radius) - 2px)}.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child{border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.\[\&\:has\(\[aria-selected\].day-outside\)\]\:bg-accent\/50:has([aria-selected].day-outside){background-color:hsl(var(--accent) / .5)}.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:rounded-r-md:has([aria-selected].day-range-end){border-top-right-radius:calc(var(--radius) - 2px);border-bottom-right-radius:calc(var(--radius) - 2px)}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]){padding-right:0}.\[\&\>button\]\:hidden>button{display:none}.\[\&\>span\:last-child\]\:truncate>span:last-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\[\&\>span\]\:line-clamp-1>span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div{--tw-translate-y: -3px;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\>svg\]\:absolute>svg{position:absolute}.\[\&\>svg\]\:left-4>svg{left:1rem}.\[\&\>svg\]\:top-4>svg{top:1rem}.\[\&\>svg\]\:size-3\.5>svg{width:.875rem;height:.875rem}.\[\&\>svg\]\:size-4>svg{width:1rem;height:1rem}.\[\&\>svg\]\:h-2\.5>svg{height:.625rem}.\[\&\>svg\]\:h-3>svg{height:.75rem}.\[\&\>svg\]\:w-2\.5>svg{width:.625rem}.\[\&\>svg\]\:w-3>svg{width:.75rem}.\[\&\>svg\]\:shrink-0>svg{flex-shrink:0}.\[\&\>svg\]\:text-destructive>svg{color:hsl(var(--destructive))}.\[\&\>svg\]\:text-foreground>svg{color:hsl(var(--foreground))}.\[\&\>svg\]\:text-muted-foreground>svg{color:hsl(var(--muted-foreground))}.\[\&\>svg\]\:text-sidebar-accent-foreground>svg{color:hsl(var(--sidebar-accent-foreground))}.\[\&\>svg\~\*\]\:pl-7>svg~*{padding-left:1.75rem}.\[\&\>tr\]\:last\:border-b-0:last-child>tr{border-bottom-width:0px}.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div{--tw-rotate: 90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text{fill:hsl(var(--muted-foreground))}.\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"]{stroke:hsl(var(--border) / .5)}.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor{stroke:hsl(var(--border))}.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"]{stroke:transparent}.\[\&_\.recharts-layer\]\:outline-none .recharts-layer{outline:2px solid transparent;outline-offset:2px}.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"]{stroke:hsl(var(--border))}.\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector,.\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor{fill:hsl(var(--muted))}.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"]{stroke:hsl(var(--border))}.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"]{stroke:transparent}.\[\&_\.recharts-sector\]\:outline-none .recharts-sector,.\[\&_\.recharts-surface\]\:outline-none .recharts-surface{outline:2px solid transparent;outline-offset:2px}.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading]{padding-top:.375rem;padding-bottom:.375rem}.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading]{font-size:.75rem;line-height:1rem}.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading]{font-weight:500}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading]{color:hsl(var(--muted-foreground))}.\[\&_\[cmdk-group\]:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group]{padding-top:0}.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg{height:1.25rem}.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg{width:1.25rem}.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input]{height:3rem}.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item]{padding-left:.5rem;padding-right:.5rem}.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item]{padding-top:.75rem;padding-bottom:.75rem}.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg{height:1.25rem}.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg{width:1.25rem}.\[\&_p\]\:leading-relaxed p{line-height:1.625}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-4 svg{width:1rem;height:1rem}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&_tr\:last-child\]\:border-0 tr:last-child{border-width:0px}.\[\&_tr\]\:border-b tr{border-bottom-width:1px}[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2{right:-.5rem}[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize{cursor:e-resize}[data-side=left] .\[\[data-side\=left\]_\&\]\:cursor-w-resize{cursor:w-resize}[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2{left:-.5rem}[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize{cursor:w-resize}[data-side=right] .\[\[data-side\=right\]_\&\]\:cursor-e-resize{cursor:e-resize}

/* Custom button highlight pulse animation */
@keyframes pulse-highlight {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7), 0 0 20px rgba(139, 92, 246, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0), 0 0 30px rgba(139, 92, 246, 0.5);
        transform: scale(1.05);
    }
}

.btn-highlight-pulse {
    animation: pulse-highlight 1.5s ease-in-out infinite;
    position: relative;
    z-index: 10;
}
 
/* Module Progress Meter Styles */
.module-progress-meter {
    background: rgba(17, 24, 39, 0.95);
    border: 2px solid #10b981;
    border-radius: 14px;
    padding: 30px 25px;
    margin: 20px auto 30px auto;
    max-width: 1036px;
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.2);
}

.meter-label {
    text-align: center;
    margin-bottom: 20px;
}

.meter-label h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 8px 0;
}

.meter-label p {
    font-size: 1rem;
    color: #e5e7eb;
    margin: 0;
}

/* Horizontal Progress Bar Styles */
.horizontal-progress-container {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    width: 100%;
}

.progress-bar-wrapper {
    position: relative;
    height: 30px;
    margin-bottom: 15px;
}

.progress-bar-segments {
    display: flex;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.segment {
    flex: 1;
    height: 100%;
}

.segment.red { background: #10b981; }
.segment.orange { background: #ff6f00; }
.segment.yellow { background: #10b981; }
.segment.light-green { background: #10b981; }
.segment.green { background: #10b981; }
.segment.dark-green { background: #10b981; }

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.slider-thumb {
    position: absolute;
    top: 34%;
    width: 16px;
    height: 16px;
    background: white;
    border: 2px solid #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.progress-label {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6f00;
    margin-top: 10px;
}

/* Coupon input UX */
.coupon-input-group {
    display: flex;
    gap: 10px;
}
.coupon-input-group input[type="text"] {
    flex: 1;
    min-height: 44px;
}
.coupon-input-group button {
    min-height: 44px;
    white-space: nowrap;
}

/* Payment button text wrapping */
#paymentBtn2 {
    text-wrap: balance;
}

/* Hide the old percentage display */
.progress-percentage {
    display: none;
}

/* Module Status Grid */
.module-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.module-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.module-status-item.completed {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}

.module-status-item.locked {
    border-color: rgba(100, 116, 139, 0.3);
    background: rgba(100, 116, 139, 0.1);
}

.status-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-icon.completed {
    background: #10b981;
    color: white;
}

.status-icon.locked {
    background: #64748b;
    color: white;
}

.module-status-item span:first-of-type {
    font-weight: 600;
    color: #e5e7eb;
}
.status-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-left: auto;
}

/* Module Numbers List */
.module-numbers-list {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.module-number-item {
    padding: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.module-number-item.completed {
    background: #10b981; /* Green background for completed modules */
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-number-item.completed .module-icon {
    background: white;
    color: #10b981;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.module-number-item.locked {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-number-item.locked .module-icon {
    background: rgba(100, 116, 139, 0.3);
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Two Column Layout for Text and Modules */
.modules-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    margin-top: 15px;
}

.modules-text-column {
    display: flex;
    align-items: center;
}

.modules-numbers-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.meter-note {
    text-align: left;
    font-size: 0.85rem;
    color: #e5e7eb;
    margin: 0;
    padding: 10px 14px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    border-left: 3px solid #10b981;
    line-height: 1.5;
    width: 100%;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .module-progress-meter {
        padding: 20px 15px;
        margin: 15px 10px;
    }
    .horizontal-progress-container {width: 300px;}
    .module-numbers-list {width: 100%;}
    .module-numbers-list {flex-direction: column;}
    .meter-label h3 {
        font-size: 1.5rem;
    }

    .module-number-item {
        padding: 6px 12px;
        font-size: 1rem;
    }

    .module-status-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .horizontal-progress-container {
        padding: 15px;
    }

    .progress-bar-segments {
        height: 16px;
    }

    .slider-thumb {
        width: 14px;
        height: 14px;
    }

    .modules-text-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modules-numbers-column {
        justify-content: center;
    }

    .meter-note {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .coupon-input-group {
        flex-direction: column;
        gap: 8px;
    }
    .coupon-input-group button {
        width: 100%;
    }
    #paymentBtn2 {
        font-size: 16px;
        padding: 12px 14px;
    }
}