
        :root {
            --primary: #8CF665;
            --primary-dark: #036A3A;
            --bg-dark: #070E0A;
            --bg-card: #0F1B15;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A9A0;
            --border-color: rgba(140, 246, 101, 0.1);
            --shadow-sm: 0 4px 15px rgba(140, 246, 101, 0.05);
            --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* PARTICLES CANVAS */
        #particles-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* CURSOR */
        .cursor-follower {
            position: fixed;
            width: 30px; height: 30px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }
        body:hover .cursor-follower { opacity: 1; }



        /* NAVBAR */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(7, 14, 10, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px; margin: 0 auto; padding: 0 20px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .logo {
            font-size: 1.5rem; font-weight: 800;
            text-decoration: none; letter-spacing: -2px;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-link {
            color: var(--text-secondary); text-decoration: none;
            transition: var(--transition); position: relative;
        }

        .nav-link:hover { color: var(--primary); }

        .btn {
            display: inline-block; padding: 10px 24px;
            border-radius: 50px; text-decoration: none;
            font-weight: 600; transition: var(--transition);
            border: 2px solid transparent; cursor: pointer; font-size: 0.9rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            color: var(--bg-dark);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(140, 246, 101, 0.35);
        }

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

        .btn-outline:hover {
            background: rgba(140, 246, 101, 0.1);
            transform: translateY(-2px);
        }

        /* HERO */
        .hero {
            position: relative; min-height: 55vh;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden; margin-top: 64px; z-index: 1;
        }

        .hero-content {
            position: relative; z-index: 10;
            text-align: center; max-width: 900px; padding: 60px 20px 40px;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .hero-badge {
            display: inline-block; padding: 8px 20px;
            background: rgba(140, 246, 101, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 50px; font-size: 0.85rem;
            color: var(--primary); margin-bottom: 2rem;
        }

        .hero-title {
            font-size: clamp(2.2rem, 6vw, 4.5rem);
            font-weight: 900; line-height: 1.15;
            margin-bottom: 1.5rem; letter-spacing: -1px;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.1rem; color: var(--text-secondary);
            margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
        }

        /* TOOLS HUB NAV */
        .tools-hub-nav {
            position: relative; z-index: 10;
            background: rgba(15, 27, 21, 0.6);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            overflow-x: auto;
            scrollbar-width: none;
        }

        .tools-hub-nav::-webkit-scrollbar { display: none; }

        .hub-nav-inner {
            display: flex; gap: 0;
            max-width: 1200px; margin: 0 auto;
            padding: 0 20px; min-width: max-content;
        }

        .hub-tab {
            padding: 1rem 1.4rem;
            background: none; border: none;
            color: var(--text-secondary);
            font-size: 0.82rem; font-weight: 600;
            cursor: pointer; transition: var(--transition);
            position: relative; white-space: nowrap;
            display: flex; align-items: center; gap: 6px;
        }

        .hub-tab::after {
            content: ''; position: absolute;
            bottom: 0; left: 0; width: 0; height: 2px;
            background: var(--primary); transition: var(--transition);
        }

        .hub-tab.active { color: var(--primary); }
        .hub-tab.active::after { width: 100%; }
        .hub-tab:hover { color: var(--primary); }

        /* MAIN CONTENT */
        .main-content {
            position: relative; z-index: 10;
            max-width: 1200px; margin: 0 auto; padding: 60px 20px;
            flex: 1; min-width: 0;
        }

        /* TOOL PANEL */
        .tool-panel { display: none; opacity: 0; transform: translateY(20px); }
        .tool-panel.active { 
            display: block; 
            animation: panelReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

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

        /* Staggered entrance for glass cards inside active tool panel */
        .tool-panel.active .glass-card {
            opacity: 0;
            animation: panelReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .tool-panel.active .glass-card:nth-child(1) { animation-delay: 0.1s; }
        .tool-panel.active .glass-card:nth-child(2) { animation-delay: 0.2s; }
        .tool-panel.active .glass-card:nth-child(3) { animation-delay: 0.3s; }

        /* SECTION HEADER */
        .tool-section-header {
            text-align: center; margin-bottom: 3rem;
        }

        .tool-section-header .tag {
            display: inline-block; font-size: 0.75rem; font-weight: 700;
            letter-spacing: 2px; color: var(--primary);
            text-transform: uppercase; margin-bottom: 1rem;
        }

        .tool-section-header h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800; margin-bottom: 1rem;
        }

        .tool-section-header p {
            color: var(--text-secondary); font-size: 1rem;
            max-width: 600px; margin: 0 auto;
        }

        /* GLASS CARD */
        .glass-card {
            background: rgba(15, 27, 21, 0.55);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 20px; padding: 2rem;
            transition: var(--transition);
        }

        .glass-card:hover {
            border-color: rgba(140, 246, 101, 0.25);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(140, 246, 101, 0.1);
            transform: translateY(-4px);
        }

        /* INPUTS */
        .input-group { display: flex; flex-direction: column; gap: 6px; }

        .input-group label {
            color: var(--text-secondary); font-size: 0.88rem;
            font-weight: 600;
        }

        .reka-input, .reka-select, .reka-textarea {
            padding: 0.75rem 1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-family: inherit;
            transition: var(--transition);
        }

        .reka-input:focus, .reka-select:focus, .reka-textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(140, 246, 101, 0.06);
            box-shadow: 0 0 0 4px rgba(140, 246, 101, 0.15);
            transform: translateY(-2px);
        }

        .reka-input::placeholder, .reka-textarea::placeholder {
            color: rgba(160,169,160,0.5);
        }

        select option { background: var(--bg-card); }

        .reka-textarea { resize: vertical; min-height: 100px; }

        /* RESULTS GRID */
        .results-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem; margin-top: 1.5rem;
        }

        .result-card {
            background: rgba(140, 246, 101, 0.05);
            border: 1px solid rgba(140, 246, 101, 0.2);
            border-radius: 14px; padding: 1.2rem;
            text-align: center;
        }

        .result-card .r-label {
            font-size: 0.78rem; color: var(--text-secondary);
            margin-bottom: 6px; display: block;
        }

        .result-card .r-value {
            font-size: 1.6rem; font-weight: 800; color: var(--primary);
            line-height: 1.2;
        }

        .result-card .r-sub {
            font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px;
        }

        /* SCORE METER */
        .score-meter {
            position: relative; margin: 2rem 0;
        }

        .score-ring-wrap {
            display: flex; align-items: center; justify-content: center;
            flex-direction: column; gap: 0.5rem; margin: 1.5rem 0;
        }

        .score-ring {
            position: relative; width: 160px; height: 160px;
        }

        .score-ring svg { transform: rotate(-90deg); }

        .score-ring-num {
            position: absolute; top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.8rem; font-weight: 900; color: var(--primary);
        }

        .score-ring-label {
            font-size: 0.9rem; color: var(--text-secondary); font-weight: 600;
        }

        /* CHECKLIST */
        .audit-checks {
            display: grid; gap: 0.75rem;
        }

        .audit-check-item {
            display: flex; align-items: center; gap: 12px;
            padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            transition: var(--transition);
        }

        .audit-check-item.pass { border-color: rgba(140, 246, 101, 0.25); }
        .audit-check-item.fail { border-color: rgba(255, 100, 100, 0.25); }
        .audit-check-item.warn { border-color: rgba(255, 200, 50, 0.25); }

        .check-icon { font-size: 1.2rem; flex-shrink: 0; }
        .check-name { font-weight: 600; font-size: 0.9rem; flex: 1; }
        .check-detail { color: var(--text-secondary); font-size: 0.8rem; }
        .check-badge {
            font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
            border-radius: 20px; flex-shrink: 0;
        }
        .badge-pass { background: rgba(140,246,101,0.15); color: var(--primary); }
        .badge-fail { background: rgba(255,100,100,0.15); color: #FF6B6B; }
        .badge-warn { background: rgba(255,200,50,0.15); color: #FFC832; }

        /* CHATBOT */
        .chatbot-window {
            display: flex; flex-direction: column; height: 500px;
            border: 1px solid var(--border-color); border-radius: 20px; overflow: hidden;
        }

        .chat-header {
            padding: 1.2rem 1.5rem;
            background: rgba(0,0,0,0.2);
            border-bottom: 1px solid var(--border-color);
            display: flex; align-items: center; gap: 12px;
        }

        .chat-avatar {
            width: 38px; height: 38px; border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; flex-shrink: 0;
        }

        .chat-status { display: flex; flex-direction: column; }
        .chat-status strong { font-size: 0.95rem; }
        .chat-status span { font-size: 0.78rem; color: var(--primary); }

        .chat-messages {
            flex: 1; overflow-y: auto; padding: 1.5rem;
            display: flex; flex-direction: column; gap: 1rem;
        }

        .chat-messages::-webkit-scrollbar { width: 4px; }
        .chat-messages::-webkit-scrollbar-thumb { background: rgba(140,246,101,0.3); border-radius: 4px; }

        .msg {
            display: flex; gap: 10px; max-width: 80%;
            animation: msgFade 0.3s ease;
        }

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

        .msg.bot { align-self: flex-start; }
        .msg.user { align-self: flex-end; flex-direction: row-reverse; }

        .msg-bubble {
            padding: 0.75rem 1rem; border-radius: 14px;
            font-size: 0.9rem; line-height: 1.5;
        }

        .msg.bot .msg-bubble {
            background: rgba(140, 246, 101, 0.08);
            border: 1px solid rgba(140,246,101,0.15);
            color: var(--text-primary);
            border-radius: 4px 14px 14px 14px;
        }

        .msg.user .msg-bubble {
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            color: var(--bg-dark); font-weight: 500;
            border-radius: 14px 4px 14px 14px;
        }

        .msg-avatar {
            width: 30px; height: 30px; border-radius: 50%;
            background: rgba(140,246,101,0.15);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; flex-shrink: 0; align-self: flex-end;
        }

        .quick-replies {
            display: flex; flex-wrap: wrap; gap: 8px; padding: 0 1.5rem 1rem;
        }

        .quick-reply {
            padding: 6px 14px; border-radius: 20px;
            border: 1px solid rgba(140,246,101,0.25);
            background: rgba(140,246,101,0.05);
            color: var(--primary); font-size: 0.8rem;
            cursor: pointer; transition: var(--transition);
        }

        .quick-reply:hover { background: rgba(140,246,101,0.12); }

        .chat-input-area {
            display: flex; gap: 10px; padding: 1rem 1.2rem;
            border-top: 1px solid var(--border-color);
            background: rgba(0,0,0,0.1);
        }

        .chat-input-area input {
            flex: 1; padding: 0.7rem 1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-color);
            border-radius: 10px; color: var(--text-primary);
            font-size: 0.9rem; font-family: inherit;
        }

        .chat-input-area input:focus { outline: none; border-color: var(--primary); }

        .send-btn {
            padding: 0.7rem 1.2rem;
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            border: none; border-radius: 10px;
            color: var(--bg-dark); font-weight: 700;
            cursor: pointer; transition: var(--transition);
            font-size: 1rem;
        }

        .send-btn:hover { transform: scale(1.05); }

        /* QUIZ */
        .quiz-progress {
            background: rgba(255,255,255,0.06);
            border-radius: 50px; height: 6px; margin-bottom: 2rem; overflow: hidden;
        }

        .quiz-progress-fill {
            height: 100%;
            background: linear-gradient(135deg, var(--primary), #4ADE80);
            border-radius: 50px; transition: width 0.5s ease;
        }

        .quiz-step { display: none; }
        .quiz-step.active { display: block; }

        .quiz-question {
            font-size: 1.3rem; font-weight: 700; margin-bottom: 1.8rem;
            line-height: 1.4;
        }

        .quiz-options {
            display: grid; gap: 0.9rem;
        }

        .quiz-option {
            padding: 1rem 1.5rem;
            background: rgba(255,255,255,0.03);
            border: 2px solid var(--border-color);
            border-radius: 12px; cursor: pointer;
            transition: var(--transition);
            display: flex; align-items: center; gap: 12px;
            font-weight: 500; color: var(--text-primary);
        }

        .quiz-option:hover {
            border-color: rgba(140,246,101,0.4);
            background: rgba(140,246,101,0.05);
        }

        .quiz-option.selected {
            border-color: var(--primary);
            background: rgba(140,246,101,0.1);
        }

        .quiz-option-icon { font-size: 1.4rem; }

        .quiz-result-card {
            text-align: center; padding: 2.5rem;
        }

        .quiz-result-icon { font-size: 4rem; margin-bottom: 1rem; }
        .quiz-result-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
        .quiz-result-desc { color: var(--text-secondary); margin-bottom: 2rem; }

        /* AD BUDGET / LANDING PAGE */
        .two-col {
            display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
        }

        @media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

        .form-section {
            display: grid; gap: 1.2rem;
        }

        /* Staggered animations for form fields */
        .tool-panel.active .form-section > * {
            opacity: 0;
            animation: panelReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .tool-panel.active .form-section > *:nth-child(1) { animation-delay: 0.15s; }
        .tool-panel.active .form-section > *:nth-child(2) { animation-delay: 0.25s; }
        .tool-panel.active .form-section > *:nth-child(3) { animation-delay: 0.35s; }
        .tool-panel.active .form-section > *:nth-child(4) { animation-delay: 0.45s; }
        .tool-panel.active .form-section > *:nth-child(5) { animation-delay: 0.55s; }

        .range-group { display: flex; flex-direction: column; gap: 8px; }
        .range-group label {
            display: flex; justify-content: space-between;
            color: var(--text-secondary); font-size: 0.88rem; font-weight: 600;
        }

        .range-val { color: var(--primary); font-weight: 700; }

        input[type="range"] {
            -webkit-appearance: none; width: 100%; height: 4px;
            background: rgba(255,255,255,0.1); border-radius: 4px; outline: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none; width: 18px; height: 18px;
            border-radius: 50%; background: var(--primary);
            cursor: pointer; box-shadow: 0 0 10px rgba(140,246,101,0.5);
        }

        /* AI READINESS */
        .readiness-pillars {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
        }

        .pillar-card {
            padding: 1.5rem; border-radius: 14px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border-color);
            text-align: center; transition: var(--transition);
        }

        .pillar-icon { font-size: 2rem; margin-bottom: 0.8rem; }
        .pillar-name { font-weight: 700; margin-bottom: 0.8rem; font-size: 0.95rem; }
        .pillar-bar {
            background: rgba(255,255,255,0.08);
            border-radius: 50px; height: 6px; overflow: hidden; margin-bottom: 6px;
        }
        .pillar-fill {
            height: 100%; border-radius: 50px;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary));
            width: 0; transition: width 1s ease 0.3s;
        }
        .pillar-score { font-size: 0.8rem; color: var(--text-secondary); }

        /* BOOKING */
        .calendar-grid {
            display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
        }

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

        .cal-nav {
            background: none; border: 1px solid var(--border-color);
            color: var(--text-primary); padding: 6px 14px;
            border-radius: 8px; cursor: pointer; transition: var(--transition);
        }

        .cal-nav:hover { border-color: var(--primary); color: var(--primary); }

        .cal-day-label {
            text-align: center; font-size: 0.75rem;
            color: var(--text-secondary); padding: 4px; font-weight: 600;
        }

        .cal-day {
            aspect-ratio: 1; display: flex; align-items: center;
            justify-content: center; border-radius: 8px;
            font-size: 0.85rem; cursor: pointer; transition: var(--transition);
            border: 1px solid transparent;
        }

        .cal-day:hover:not(.empty):not(.past) { border-color: var(--primary); color: var(--primary); }
        .cal-day.selected { background: var(--primary); color: var(--bg-dark); font-weight: 700; }
        .cal-day.past { opacity: 0.3; cursor: default; }
        .cal-day.today { border-color: rgba(140,246,101,0.4); }
        .cal-day.empty { cursor: default; }

        .time-slots {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
            margin-top: 1.2rem;
        }

        .time-slot {
            padding: 0.6rem; border-radius: 8px; text-align: center;
            border: 1px solid var(--border-color); cursor: pointer;
            font-size: 0.83rem; transition: var(--transition); color: var(--text-secondary);
        }

        .time-slot:hover { border-color: var(--primary); color: var(--primary); }
        .time-slot.selected { background: var(--primary); color: var(--bg-dark); font-weight: 700; border-color: var(--primary); }
        .time-slot.booked { opacity: 0.35; cursor: default; text-decoration: line-through; }

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

        .dash-metric {
            padding: 1.5rem; border-radius: 16px;
            background: rgba(140, 246, 101, 0.04);
            border: 1px solid rgba(140,246,101,0.15);
            position: relative; overflow: hidden;
        }

        .dash-metric::before {
            content: ''; position: absolute;
            top: -20px; right: -20px;
            width: 80px; height: 80px;
            border-radius: 50%;
            background: rgba(140,246,101,0.06);
        }

        .dash-metric-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
        .dash-metric-value { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
        .dash-metric-label { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 4px; }
        .dash-metric-delta { font-size: 0.78rem; color: #4ADE80; font-weight: 600; }
        .dash-metric-delta.neg { color: #FF6B6B; }

        .mini-chart {
            display: flex; align-items: flex-end; gap: 4px;
            height: 50px; margin-top: 1rem;
        }

        .mini-bar {
            flex: 1; background: rgba(140,246,101,0.15);
            border-radius: 4px 4px 0 0; transition: height 1s ease;
            position: relative;
        }

        .mini-bar:hover { background: rgba(140,246,101,0.4); }

        /* LANDING PAGE ANALYZER */
        .lp-categories {
            display: grid; gap: 1rem;
        }

        .lp-cat {
            padding: 1.2rem 1.5rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border-color);
            border-radius: 12px;
        }

        .lp-cat-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 0.8rem;
        }

        .lp-cat-name { font-weight: 700; display: flex; align-items: center; gap: 8px; }
        .lp-cat-score { font-size: 1.1rem; font-weight: 800; color: var(--primary); }

        .lp-progress { background: rgba(255,255,255,0.07); border-radius: 50px; height: 6px; overflow: hidden; }
        .lp-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--primary-dark), var(--primary)); transition: width 1s ease; }

        .lp-issues { margin-top: 0.8rem; }
        .lp-issue { font-size: 0.82rem; color: var(--text-secondary); padding: 3px 0; display: flex; align-items: center; gap: 6px; }

        /* FORM ROW */
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
        @media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

        /* CONFIRM / SUCCESS */
        .success-box {
            text-align: center; padding: 3rem;
            background: rgba(140,246,101,0.05);
            border: 1px solid rgba(140,246,101,0.2);
            border-radius: 20px;
        }

        .success-box .s-icon { font-size: 4rem; margin-bottom: 1rem; }
        .success-box h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
        .success-box p { color: var(--text-secondary); }

        /* SPACER */
        .gap-1 { margin-top: 1rem; }
        .gap-2 { margin-top: 2rem; }
        .gap-3 { margin-top: 3rem; }

        /* FOOTER */
        .footer {
            position: relative; z-index: 10;
            background: rgba(15, 27, 21, 0.8);
            border-top: 1px solid var(--border-color);
            padding: 40px 20px 20px; margin-top: 60px; text-align: center;
        }

        .footer p { color: var(--text-secondary); font-size: 0.85rem; }
        .footer a { color: var(--primary); text-decoration: none; }

        /* SCROLLBAR */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

        /* ANTIGRAVITY FLOATING ORBS */
        .orb {
            position: fixed; border-radius: 50%;
            background: radial-gradient(circle, rgba(140,246,101,0.15), transparent);
            pointer-events: none; z-index: 0;
        }

        .loading-bar-wrap {
            height: 4px; background: rgba(255,255,255,0.06);
            border-radius: 4px; margin-top: 1rem; overflow: hidden;
        }

        .loading-bar-fill {
            height: 100%; width: 0;
            background: linear-gradient(90deg, var(--primary-dark), var(--primary));
            border-radius: 4px; transition: width 0.1s linear;
        }

        /* EMAIL CAPTURE */
        .email-capture {
            display: flex; gap: 10px; margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .email-capture input {
            flex: 1; min-width: 200px;
            padding: 0.8rem 1.2rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-color);
            border-radius: 10px; color: var(--text-primary);
            font-size: 0.9rem; font-family: inherit;
        }

        .email-capture input:focus { outline: none; border-color: var(--primary); }

        @media(max-width: 768px) {
            .nav-links { display: none; }
            .hub-tab { padding: 1rem 0.9rem; font-size: 0.75rem; }
        }
    

/* ===== LOGO - SIMPLE TEXT WHITE ===== */
.logo-text-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFFFFF !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}
.logo-text-brand:hover {
    opacity: 0.8;
}

/* ==========================================================================
   STATE-OF-THE-ART OBSIDIAN-GLASS TOOLS DASHBOARD & SIDEBAR STYLES
   ========================================================================== */

/* Tools layout wrapper */
.tools-layout-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Sticky vertical navigation sidebar */
.tools-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: calc(100vh - 140px);
    background: rgba(15, 27, 21, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-20px);
    
    /* Collapse space when hidden */
    width: 0;
    padding: 0;
    border-width: 0;
    overflow: hidden;
    margin-right: -30px; /* offset the layout gap */
}

.tools-sidebar.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    
    /* Restore space when visible */
    width: 280px;
    padding: 24px;
    border-width: 1px;
    margin-right: 0;
}

.sidebar-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.sidebar-back-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.sidebar-back-btn:hover {
    background: rgba(140, 246, 101, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}

.sidebar-nav::-webkit-scrollbar {
    width: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(140, 246, 101, 0.15);
    border-radius: 2px;
}

.sidebar-tab {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: all 0.25s ease;
    width: 100%;
}

.sidebar-tab i {
    font-size: 1.15rem;
}

.sidebar-tab:hover {
    background: rgba(140, 246, 101, 0.05);
    color: var(--primary);
    padding-left: 20px;
}

.sidebar-tab.active {
    background: rgba(140, 246, 101, 0.1);
    border: 1px solid rgba(140, 246, 101, 0.25);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(140, 246, 101, 0.05) inset;
}

.sidebar-divider {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 700;
    margin: 15px 0 8px 12px;
    opacity: 0.5;
}

/* Mobile toggle button */
.sidebar-toggle-mobile {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 10001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #4ADE80);
    border: none;
    color: var(--bg-dark);
    font-size: 1.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(140, 246, 101, 0.4), 0 0 0 3px rgba(15, 27, 21, 0.8);
    transition: all 0.3s ease;
}

.sidebar-toggle-mobile:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ============================================================
   PREMIUM TOOLS HUB — Cards, Animations, AI FAB
   ============================================================ */

/* Hub Stats Bar */
.hub-stats-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hub-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 12px 24px;
    background: rgba(140, 246, 101, 0.04);
    border: 1px solid rgba(140, 246, 101, 0.12);
    border-radius: 14px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.hub-stat:hover {
    border-color: rgba(140, 246, 101, 0.35);
    transform: translateY(-2px);
    background: rgba(140, 246, 101, 0.08);
}

.hub-stat-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.hub-stat-label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Tools grid dashboard layout */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tools-grid { grid-template-columns: 1fr; gap: 16px; }
    .hub-stats-bar { gap: 0.8rem; }
    .hub-stat { padding: 8px 16px; min-width: 70px; }
    .hub-stat-num { font-size: 1rem; }
}

/* Hub Card */
.hub-card {
    --accent: var(--card-accent, 140,246,101);
    background: rgba(15, 27, 21, 0.6);
    border: 1px solid rgba(var(--accent), 0.12);
    border-radius: 18px;
    padding: 26px 24px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(14px);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: hubCardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--card-delay, 0) * 0.08s);
}

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

/* Glow orb */
.hub-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(var(--accent), 0.07), transparent 70%);
    top: -90px;
    right: -90px;
    pointer-events: none;
    transition: all 0.6s ease;
    border-radius: 50%;
}

.hub-card:hover .hub-card-glow {
    top: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(var(--accent), 0.16), transparent 70%);
}

/* Scanline sweep effect */
.hub-card-scanline {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent), 0.04), transparent);
    pointer-events: none;
    transition: none;
}

.hub-card:hover .hub-card-scanline {
    animation: scanSweep 0.8s ease forwards;
}

@keyframes scanSweep {
    to { left: 100%; }
}

/* Top row: icon + badge */
.hub-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon */
.hub-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--accent), 0.15), rgba(var(--accent), 0.05));
    border: 1px solid rgba(var(--accent), 0.3);
    color: rgb(var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    box-shadow: inset 0 0 12px rgba(var(--accent), 0.1);
}

.hub-card:hover .hub-card-icon {
    background: linear-gradient(135deg, rgba(var(--accent), 0.25), rgba(var(--accent), 0.1));
    border-color: rgba(var(--accent), 0.6);
    transform: scale(1.1) rotate(5deg) translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent), 0.3), inset 0 0 15px rgba(var(--accent), 0.2);
    color: #fff;
}

/* Badge */
.hub-card-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.hub-card-badge i { font-size: 0.85rem; }

.hub-card:hover .hub-card-badge {
    background: rgba(var(--accent), 0.08);
    border-color: rgba(var(--accent), 0.25);
    color: rgb(var(--accent));
}

/* AI badge glow */
.hub-card-badge--ai {
    background: rgba(140, 246, 101, 0.08);
    border-color: rgba(140, 246, 101, 0.3);
    color: var(--primary);
    animation: aiBadgePulse 2s ease-in-out infinite;
}

@keyframes aiBadgePulse {
    0%,100% { box-shadow: 0 0 0 rgba(140,246,101,0); }
    50% { box-shadow: 0 0 12px rgba(140,246,101,0.2); }
}

/* Featured card (AI Chatbot) */
.hub-card--featured {
    border-color: rgba(140, 246, 101, 0.25);
    background: rgba(15, 27, 21, 0.75);
    box-shadow: 0 4px 30px rgba(140, 246, 101, 0.08);
}

/* Card title */
.hub-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
    transition: color 0.3s ease;
}

.hub-card:hover h3 {
    color: rgb(var(--accent));
}

/* Card description */
.hub-card p {
    font-size: 0.86rem;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
}

/* Card footer */
.hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgb(var(--accent));
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(var(--accent), 0.08);
    transition: all 0.3s ease;
}

.hub-card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hub-card-footer > i {
    transition: transform 0.3s ease;
}

/* Hover state */
.hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--accent), 0.45);
    box-shadow:
        0 12px 35px rgba(var(--accent), 0.1),
        0 0 0 1px rgba(var(--accent), 0.08) inset;
}

.hub-card:hover .hub-card-footer {
    border-top-color: rgba(var(--accent), 0.2);
}

.hub-card:hover .hub-card-footer > i {
    transform: translateX(5px);
}

/* Active press */
.hub-card:active {
    transform: translateY(-2px) scale(0.98);
    transition-duration: 0.1s;
}

/* ============================================================
   FLOATING AI FAB BUTTON
   ============================================================ */

.reka-ai-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f1b15 0%, #1a2f22 100%);
    border: 2px solid rgba(140, 246, 101, 0.5);
    color: #8CF665;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 0 25px rgba(140, 246, 101, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

.reka-ai-fab:hover {
    transform: scale(1.12);
    box-shadow:
        0 0 40px rgba(140, 246, 101, 0.45),
        0 12px 40px rgba(0, 0, 0, 0.6);
    border-color: #8CF665;
}

.reka-ai-fab-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(140, 246, 101, 0.3);
    animation: fabPulseRing 2.5s ease-in-out infinite;
    pointer-events: none;
}

.reka-ai-fab-ring--2 {
    animation-delay: 1.25s;
}

@keyframes fabPulseRing {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.35); opacity: 0; }
}

.reka-ai-fab-label {
    position: absolute;
    right: calc(100% + 14px);
    white-space: nowrap;
    background: rgba(15, 27, 21, 0.95);
    border: 1px solid rgba(140, 246, 101, 0.3);
    color: #8CF665;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.reka-ai-fab:hover .reka-ai-fab-label {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   CHAT TOOL GRID — Quick-action chips inside chatbot
   ============================================================ */

.chat-tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

@media (max-width: 540px) {
    .chat-tool-grid { grid-template-columns: repeat(2, 1fr); }
}

.chat-tool-chip {
    background: rgba(140, 246, 101, 0.06);
    border: 1px solid rgba(140, 246, 101, 0.2);
    color: var(--primary);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    font-family: inherit;
}

.chat-tool-chip:hover {
    background: rgba(140, 246, 101, 0.14);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 246, 101, 0.15);
}

.chat-tool-chip i {
    font-size: 1rem;
}

/* Chat Quiz Options */
.chat-quiz-opt {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(140, 246, 101, 0.15);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.chat-quiz-opt:hover {
    background: rgba(140, 246, 101, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Chat Widget Inputs */
.chat-widget-field {
    margin-bottom: 10px;
}

.chat-widget-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-widget-input {
    width: 100%;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(140, 246, 101, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.25s ease;
    outline: none;
}

.chat-widget-input:focus {
    border-color: var(--primary);
    background: rgba(140, 246, 101, 0.04);
    box-shadow: 0 0 0 3px rgba(140, 246, 101, 0.08);
}

.chat-widget-input option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Chat Feed Item */
.chat-feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.chat-feed-item:hover {
    background: rgba(140, 246, 101, 0.04);
    border-color: rgba(140, 246, 101, 0.12);
}

/* Typing dots */
.typing-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    padding: 4px 0;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
    opacity: 0.5;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Interactive Chat Widgets styled globally */
.chat-widget {
    background: rgba(15, 27, 21, 0.9);
    border: 1px solid rgba(140, 246, 101, 0.25);
    border-radius: 14px;
    padding: 16px;
    margin-top: 10px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    animation: widgetSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.chat-widget-btn {
    background: linear-gradient(135deg, var(--primary), #4ADE80);
    border: none;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.chat-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(140, 246, 101, 0.4);
}

.chat-stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.chat-stat-box .lbl {
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-stat-box .val {
    font-size: 0.95rem;
    font-weight: 750;
    color: var(--primary);
}

/* Custom Calendar inside Chat */
.chat-calendar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.chat-cal-day {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chat-cal-day:hover {
    background: rgba(140, 246, 101, 0.06);
    border-color: var(--primary);
}

.chat-cal-day.selected {
    background: rgba(140, 246, 101, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* Chat budget platform styles */
.chat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.chat-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chat-chip:hover {
    background: rgba(140, 246, 101, 0.06);
    border-color: var(--primary);
    color: var(--primary);
}

.chat-chip.selected {
    background: rgba(140, 246, 101, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

/* Layout adjustments */
@media (max-width: 992px) {
    .tools-layout-container {
        flex-direction: column;
    }
    .tools-sidebar {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 1000;
        border-radius: 0;
        transform: translateX(-100%);
    }
    .tools-sidebar.open {
        transform: translateX(0);
    }
    .sidebar-toggle-mobile {
        display: flex;
    }
    .main-content {
        padding-top: 20px !important;
    }
}

/* ==========================================================================
   CINEMATIC LIVE CAMPAIGN DASHBOARD
   ========================================================================== */

.live-dot-pulse {
    display: inline-block; width: 9px; height: 9px;
    background: var(--primary); border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    animation: livePulse 1.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes livePulse {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 6px var(--primary); }
    50% { opacity:0.6; transform:scale(0.75); box-shadow:0 0 14px var(--primary); }
}
.live-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(140,246,101,0.08); border: 1px solid rgba(140,246,101,0.2);
    border-radius: 20px; padding: 4px 12px;
    font-size: 0.72rem; font-weight: 700; color: var(--primary); letter-spacing: 0.5px;
}
.dash-card-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.dash-card-header h3 { display:flex; align-items:center; gap:8px; font-size:1rem; font-weight:700; }
.live-kpi-bar { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; margin-bottom:2rem; }
.live-kpi-card {
    background:rgba(15,27,21,0.7); border:1px solid var(--border-color); border-radius:18px;
    padding:20px; display:flex; align-items:center; gap:16px;
    position:relative; overflow:hidden; transition:all 0.35s ease; backdrop-filter:blur(12px);
}
.live-kpi-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(140,246,101,0.03),transparent); pointer-events:none; }
.live-kpi-card:hover { border-color:rgba(140,246,101,0.3); transform:translateY(-3px); box-shadow:0 12px 30px rgba(0,0,0,0.3); }
.lkpi-icon { width:52px; height:52px; border-radius:14px; background:linear-gradient(135deg,rgba(140,246,101,0.18),rgba(140,246,101,0.05)); border:1px solid rgba(140,246,101,0.35); color:var(--primary); display:flex; align-items:center; justify-content:center; font-size:1.6rem; flex-shrink:0; }
.lkpi-data { flex:1; min-width:0; }
.lkpi-label { font-size:0.72rem; color:var(--text-secondary); text-transform:uppercase; letter-spacing:0.8px; font-weight:600; margin-bottom:4px; }
.lkpi-value { font-size:1.6rem; font-weight:900; color:var(--primary); line-height:1.1; font-variant-numeric:tabular-nums; }
.lkpi-trend { font-size:0.72rem; color:#4ADE80; font-weight:600; margin-top:4px; display:flex; align-items:center; gap:3px; }
.lkpi-spark { width:60px; height:36px; display:flex; align-items:flex-end; gap:3px; flex-shrink:0; }
.spark-bar { flex:1; background:rgba(140,246,101,0.25); border-radius:2px 2px 0 0; transition:height 0.4s ease; min-height:4px; }
.dash-cinema-row { display:grid; grid-template-columns:1.6fr 1fr; gap:20px; margin-bottom:20px; }
@media(max-width:900px) { .dash-cinema-row{grid-template-columns:1fr;} .live-kpi-bar{grid-template-columns:1fr 1fr;} }
@media(max-width:500px) { .live-kpi-bar{grid-template-columns:1fr;} }
.dash-map-card { position:relative; }
.world-map-wrap { position:relative; width:100%; aspect-ratio:2/1; border-radius:12px; overflow:hidden; background:linear-gradient(135deg,rgba(7,14,10,0.9),rgba(15,27,21,0.7)); border:1px solid rgba(140,246,101,0.1); }
#worldMapCanvas { width:100%; height:100%; display:block; }
.map-pings { position:absolute; inset:0; pointer-events:none; }
.map-ping { position:absolute; width:10px; height:10px; border-radius:50%; transform:translate(-50%,-50%); animation:mapPingAnim 2.5s ease-out forwards; }
.map-ping::before { content:''; position:absolute; inset:0; border-radius:50%; background:var(--ping-color,var(--primary)); opacity:0.9; }
.map-ping::after { content:''; position:absolute; inset:-8px; border-radius:50%; border:2px solid var(--ping-color,var(--primary)); animation:pingRing 2.5s ease-out forwards; opacity:0; }
@keyframes mapPingAnim { 0%{opacity:1;transform:translate(-50%,-50%) scale(0.4);} 60%{opacity:0.8;} 100%{opacity:0;transform:translate(-50%,-50%) scale(1.2);} }
@keyframes pingRing { 0%{transform:scale(0.5);opacity:0.8;} 100%{transform:scale(3);opacity:0;} }
.map-overlay-stats { position:absolute; bottom:12px; left:12px; display:flex; gap:16px; background:rgba(7,14,10,0.88); border:1px solid rgba(140,246,101,0.15); border-radius:10px; padding:8px 14px; backdrop-filter:blur(8px); }
.map-stat-num { display:block; font-size:1rem; font-weight:800; color:var(--primary); line-height:1.2; }
.map-stat-label { display:block; font-size:0.65rem; color:var(--text-secondary); text-transform:uppercase; letter-spacing:0.5px; }
.dash-ticker-card { overflow:hidden; }
.conversion-ticker { display:flex; flex-direction:column; gap:8px; max-height:280px; overflow:hidden; }
.conv-item { display:flex; align-items:center; gap:10px; padding:10px 12px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-radius:10px; animation:tickerSlideIn 0.4s cubic-bezier(0.16,1,0.3,1) forwards; font-size:0.82rem; }
@keyframes tickerSlideIn { from{opacity:0;transform:translateY(-12px);} to{opacity:1;transform:translateY(0);} }
.conv-avatar { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.9rem; flex-shrink:0; font-weight:700; }
.conv-info { flex:1; min-width:0; }
.conv-name { font-weight:600; font-size:0.82rem; color:var(--text-primary); }
.conv-action { font-size:0.73rem; color:var(--text-secondary); margin-top:1px; }
.conv-value { font-weight:800; font-size:0.85rem; white-space:nowrap; }
.conv-time { font-size:0.68rem; color:var(--text-secondary); white-space:nowrap; }
.social-mentions-feed { display:flex; flex-direction:column; gap:10px; max-height:280px; overflow:hidden; }
.mention-item { padding:12px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-radius:12px; animation:tickerSlideIn 0.4s ease forwards; }
.mention-header { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.mention-avatar { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:700; flex-shrink:0; }
.mention-user { font-weight:700; font-size:0.78rem; flex:1; }
.mention-platform { font-size:0.85rem; }
.mention-time { font-size:0.68rem; color:var(--text-secondary); }
.mention-text { font-size:0.78rem; color:var(--text-secondary); line-height:1.5; }
.mention-text strong { color:var(--primary); }
.channel-bar-track { background:rgba(255,255,255,0.06); border-radius:50px; height:7px; overflow:hidden; margin-top:6px; }
.channel-bar-fill { height:100%; border-radius:50px; transition:width 1.2s cubic-bezier(0.16,1,0.3,1); }


