﻿/* ============================
   Section 3 – How It Works
   Premium Solution Showcase
   ============================ */

/* ── Section Base ── */
.section-solution {
    position: relative;
    padding: clamp(40px, 5vw, 70px) 24px var(--section-pad);
    background: var(--bg);
    overflow: hidden;
}

/* Geometric Grid canvas */
.section-solution .galaxy-trail-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Top gradient fade — smooth transition from section above */
.section-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Tighter heading spacing for this section */
.section-solution .eyebrow {
    margin-bottom: 8px;
}

.section-solution .section-h2 {
    margin-bottom: 10px;
}

.section-solution .section-sub {
    margin-bottom: 32px;
    color: #3a3f50;
}

.solution-inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-inner>.eyebrow,
.solution-inner>.section-h2,
.solution-inner>.section-sub {
    order: 0;
    width: 100%;
}

.solution-inner>.activate-wrap {
    order: 2;
}

.solution-inner>.setup-ring-wrap {
    order: 3;
}

.solution-inner>.dashboard-reveal {
    order: 4;
}

/* Particle canvas — behind everything */
.solution-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── Activate Frame — invisible wrapper, no visual box ── */
.activate-frame {
    max-width: 70vw;
    width: 100%;
    margin: 0 auto;
}

.solution-inner>.activate-frame {
    order: 2;
}

/* ── Activate Button ── */
.activate-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.activate-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 52px;
    background: var(--gradient-1);
    color: #fff;
    font-family: var(--ff);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    letter-spacing: -.01em;
    box-shadow:
        0 4px 24px rgba(79, 110, 247, .35),
        0 0 0 0 rgba(79, 110, 247, .15);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
    animation: activatePulse 2.5s ease-in-out infinite;
    z-index: 2;
    overflow: hidden;
    transform: translate(var(--mx, 0), var(--my, 0));
}

/* Shimmer sweep on hover */
.activate-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(255, 255, 255, .20) 45%,
            rgba(255, 255, 255, .30) 50%,
            rgba(255, 255, 255, .20) 55%,
            transparent 70%);
    transform: translateX(-150%);
    transition: none;
    pointer-events: none;
}

.activate-btn:hover::after {
    animation: btnShimmer .7s ease forwards;
}

@keyframes btnShimmer {
    to {
        transform: translateX(150%);
    }
}

.activate-btn:hover {
    transform: translate(var(--mx, 0), var(--my, 0)) translateY(-3px) scale(1.04);
    box-shadow:
        0 12px 44px rgba(79, 110, 247, .50),
        0 0 0 8px rgba(79, 110, 247, .10),
        0 0 60px rgba(139, 92, 246, .15);
    animation: none;
}

.activate-btn:active {
    transform: translate(var(--mx, 0), var(--my, 0)) translateY(0) scale(.97);
}

.activate-btn .btn-arrow {
    display: inline-block;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.activate-btn:hover .btn-arrow {
    transform: translateX(6px);
}

@keyframes activatePulse {

    0%,
    100% {
        box-shadow: 0 4px 24px rgba(79, 110, 247, .35), 0 0 0 0 rgba(79, 110, 247, .15);
    }

    50% {
        box-shadow: 0 6px 28px rgba(79, 110, 247, .4), 0 0 0 10px rgba(79, 110, 247, .05);
        transform: translate(var(--mx, 0), var(--my, 0)) scale(1.025);
    }
}

/* ════════════════════════════════════════════════════════
   Elliptical Orbit System — offset-path based
   Wraps the pill-shaped Activate button properly
   ════════════════════════════════════════════════════════ */

.orbit-system {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    /* overflow must be visible so orbiting dots outside the button are seen */
    overflow: visible;
}

/* ── Base dot ── */
.orbit-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light, #7B95FF);
    opacity: .45;
    offset-rotate: 0deg;
    will-change: offset-distance;
}

/* ── Orbit animation ── */
@keyframes orbitEllipse {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

/* Subtle breathing for all dots */
@keyframes dotBreatheSoft {
    0% {
        opacity: var(--od-op-lo, .25);
    }

    100% {
        opacity: var(--od-op-hi, .6);
    }
}

/* ────────────────────────────────────────
   INNER ELLIPSE  — 5 dots, fast, tight
   rx=160  ry=56   → clears the pill with margin
   ──────────────────────────────────────── */
.od-i {
    offset-path: path('M -160,0 A 160,56 0 1,1 160,0 A 160,56 0 1,1 -160,0');
    animation:
        orbitEllipse 7s linear infinite,
        dotBreatheSoft 2.8s ease-in-out infinite alternate;
    width: 4px;
    height: 4px;
    --od-op-lo: .3;
    --od-op-hi: .65;
}

.od-i1 {
    animation-delay: 0s, -0.4s;
}

.od-i2 {
    animation-delay: -1.4s, -1.2s;
}

.od-i3 {
    animation-delay: -2.8s, -0.8s;
}

.od-i4 {
    animation-delay: -4.2s, -2.0s;
}

.od-i5 {
    animation-delay: -5.6s, -1.6s;
}

/* Glow on 2 inner dots */
.od-i1,
.od-i3 {
    background: #7B95FF;
    box-shadow: 0 0 6px rgba(123, 149, 255, .5), 0 0 14px rgba(79, 110, 247, .2);
    opacity: .65;
    width: 5px;
    height: 5px;
}

/* ────────────────────────────────────────
   MIDDLE ELLIPSE  — 4 dots, medium speed
   rx=210  ry=82   → wider, never enters button
   ──────────────────────────────────────── */
.od-m {
    offset-path: path('M -210,0 A 210,82 0 1,1 210,0 A 210,82 0 1,1 -210,0');
    animation:
        orbitEllipse 12s linear infinite reverse,
        dotBreatheSoft 3.5s ease-in-out infinite alternate;
    width: 5px;
    height: 5px;
    --od-op-lo: .2;
    --od-op-hi: .55;
}

.od-m1 {
    animation-delay: 0s, -0.3s;
}

.od-m2 {
    animation-delay: -3s, -1.5s;
}

.od-m3 {
    animation-delay: -6s, -0.9s;
}

.od-m4 {
    animation-delay: -9s, -2.1s;
}

/* One glowing dot in middle ring */
.od-m2 {
    background: #818CF8;
    box-shadow: 0 0 8px rgba(129, 140, 248, .5), 0 0 18px rgba(79, 110, 247, .25);
    opacity: .6;
    width: 6px;
    height: 6px;
}

/* One small dot */
.od-m4 {
    width: 3px;
    height: 3px;
}

/* ────────────────────────────────────────
   OUTER ELLIPSE  — 4 dots, slow, ethereal
   rx=270  ry=115  → largest, generous clearance
   ──────────────────────────────────────── */
.od-o {
    offset-path: path('M -270,0 A 270,115 0 1,1 270,0 A 270,115 0 1,1 -270,0');
    animation:
        orbitEllipse 20s linear infinite,
        dotBreatheSoft 4s ease-in-out infinite alternate;
    width: 6px;
    height: 6px;
    --od-op-lo: .12;
    --od-op-hi: .35;
}

.od-o1 {
    animation-delay: 0s, -0.5s;
}

.od-o2 {
    animation-delay: -5s, -2.0s;
}

.od-o3 {
    animation-delay: -10s, -1.0s;
}

.od-o4 {
    animation-delay: -15s, -3.0s;
}

/* Larger ethereal dots on outer ring */
.od-o1,
.od-o3 {
    width: 7px;
    height: 7px;
    opacity: .2;
    background: #A5B4FC;
    box-shadow: 0 0 10px rgba(165, 180, 252, .3);
}

/* Tiny accent on outer ring */
.od-o4 {
    width: 3px;
    height: 3px;
}

.activate-sub {
    font-size: .88rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Hidden after click */
.activate-wrap.is-done {
    pointer-events: none;
}


/* ── Loading Animation ── */

/* Overlay background with subtle radial glow */
.dash-overlay-ring {
    display: none;
    background: radial-gradient(ellipse at center, rgba(79, 110, 247, .04) 0%, #1c1d22 70%);
}

.dash-overlay-ring.is-active {
    display: flex;
}

/* Content wrapper */
.setup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

/* Hero percentage */
.setup-pct-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.setup-pct {
    font-size: 3rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, .7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.setup-pct-symbol {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .3);
}

/* Progress bar — scoped to dashboard overlay only */
.dash-overlay-ring .setup-bar-track {
    position: relative;
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: visible;
}

.dash-overlay-ring .setup-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 4px;
    background: linear-gradient(90deg, #4F6EF7, #818CF8);
    transition: width .1s linear;
}

.setup-bar-glow {
    position: absolute;
    top: -4px;
    right: 0;
    width: 12px;
    height: 11px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 140, 248, .6) 0%, transparent 70%);
    filter: blur(3px);
    opacity: 0;
    transition: opacity .3s ease;
}

.dash-overlay-ring .setup-bar-track.is-running .setup-bar-glow {
    opacity: 1;
}

/* Status text */
.setup-status {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    min-height: 18px;
    transition: color .3s ease;
}

/* Step indicator dots */
.setup-dots {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.setup-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    transition: all .4s cubic-bezier(.22, 1, .36, 1);
}

.setup-dot.is-active {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(79, 110, 247, .5);
    transform: scale(1.3);
}

.setup-dot.is-done {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(79, 110, 247, .4);
}

/* Completion state — SVG checkmark */
.setup-pct.is-done {
    color: #818CF8;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-fill-color: unset;
}

/* Particle burst container */
.setup-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.setup-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
}


/* ── Dashboard Mock ── */
.dashboard-reveal {
    position: relative;
}

.dash-frame {
    background: #1c1d22;
    border-radius: var(--radius-xl);
    overflow: visible;
    display: flex;
    min-height: 320px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .2),
        0 0 0 1px rgba(255, 255, 255, .06),
        0 0 40px rgba(79, 110, 247, .12),
        0 0 80px rgba(79, 110, 247, .06);
    text-align: left;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Overlays inside dash-frame (button + ring) */
.dash-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    background: #1c1d22;
    border-radius: inherit;
    overflow: hidden;
}

/* Let orbiting dots escape the button overlay */
.dash-overlay.dash-overlay-btn {
    overflow: visible;
}

.dash-overlay-btn {
    overflow: visible;
}

/* Ring overlay hidden by default, shown when activated */
.dash-overlay-ring {
    display: none;
}

.dash-overlay-ring.is-active {
    display: flex;
}


/* Dashboard content (sidebar + main) starts hidden */
.dash-content {
    display: flex;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    overflow: hidden;
    border-radius: inherit;
}

.dash-content.is-active {
    opacity: 1;
}

/* Magnetic tilt edge light */
.dash-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity .3s ease;
    background: radial-gradient(600px circle at var(--light-x, 50%) var(--light-y, 50%),
            rgba(79, 110, 247, .08),
            transparent 60%);
}

.dash-frame:hover::after {
    opacity: 1;
}

.dash-sidebar {
    width: 140px;
    background: rgba(255, 255, 255, .03);
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.dash-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px 20px;
    font-weight: 700;
    font-size: .85rem;
    color: #fff;
}

.dash-sidebar-logo .logo-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #fff;
    font-weight: 800;
}

.dash-sidebar-section {
    font-size: .6rem;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 16px 16px 6px;
    font-weight: 600;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    position: relative;
}

.dash-nav-item:hover {
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .8);
}

.dash-nav-item.active {
    color: #fff;
    background: rgba(79, 110, 247, .12);
}

.dash-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

.dash-nav-item .nav-icon {
    font-size: .82rem;
    width: 18px;
    text-align: center;
}

/* Sidebar tooltip on hover */
.dash-nav-item .dash-tooltip {
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%) scale(.9);
    background: rgba(0, 0, 0, .85);
    color: #fff;
    font-size: .65rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 10;
}

.dash-nav-item:hover .dash-tooltip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.dash-main {
    flex: 1;
    min-width: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    min-height: 380px;
}

/* Dashboard view switching */
.dash-view {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.dash-view.active {
    display: flex;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dash-greeting {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}

.dash-greeting-sub {
    font-size: .58rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.dash-new-bot-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: var(--accent);
    color: #fff;
    font-size: .58rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.dash-new-bot-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(79, 110, 247, .3);
}

/* Stat cards */
.dash-stats {
    display: flex;
    gap: 8px;
}

.dash-stat-card {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
    position: relative;
    overflow: hidden;
}

.dash-stat-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(79, 110, 247, .15);
    transform: translateY(-2px);
}

.dash-stat-label {
    font-size: .55rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-stat-icon {
    font-size: .8rem;
    opacity: .4;
}

.dash-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.dash-stat-sub {
    font-size: .6rem;
    color: rgba(255, 255, 255, .25);
    margin-top: 2px;
}

/* +1 popup notification */
.dash-stat-popup {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0;
    pointer-events: none;
}

.dash-stat-popup.is-active {
    animation: statPopup .8s var(--ease) forwards;
}

@keyframes statPopup {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Bot list */
.dash-bots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-bots-title {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
}

.dash-bots-link {
    font-size: .68rem;
    color: var(--accent-light);
    cursor: pointer;
}

.dash-bot-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
    min-width: 0;
}

.dash-bot-row:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(79, 110, 247, .12);
}

.dash-bot-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#botOverviewRows {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 110, 247, .2) transparent;
}

.dash-bot-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    flex-shrink: 0;
    overflow: hidden;
}

.dash-bot-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dash-bot-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.dash-bot-name {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-bot-model {
    font-size: .58rem;
    color: rgba(255, 255, 255, .25);
    font-family: var(--ff-mono);
}

.dash-bot-badge {
    font-size: .5rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: box-shadow .3s ease;
    flex-shrink: 0;
}

.dash-bot-row:hover .dash-bot-badge {
    box-shadow: 0 0 12px rgba(34, 197, 94, .25);
}


/* ── Dashboard Skills View ── */
.dash-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.dash-skill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 8px;
    transition: all .2s ease;
    cursor: pointer;
}

.dash-skill-item.active {
    background: rgba(79, 110, 247, .06);
    border-color: rgba(79, 110, 247, .08);
}

.dash-skill-item:hover {
    background: rgba(79, 110, 247, .08);
}

.dash-skill-icon {
    font-size: .85rem;
    flex-shrink: 0;
}

.dash-skill-name {
    flex: 1;
    font-size: .68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
}

.dash-skill-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-skill-desc {
    font-size: .52rem;
    color: rgba(255, 255, 255, .3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-skill-status {
    font-size: .52rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.dash-skill-status.on {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
}

.dash-skill-status.off {
    background: rgba(239, 68, 68, .1);
    color: #ef4444;
}


/* Skill toggle switch */
.dash-skill-toggle {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.dash-skill-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.dash-skill-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    border-radius: 10px;
    transition: background .3s ease;
}

.dash-skill-slider::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    left: 2px;
    bottom: 2px;
    transition: transform .3s ease;
}

.dash-skill-toggle input:checked+.dash-skill-slider {
    background: var(--accent);
}

.dash-skill-toggle input:checked+.dash-skill-slider::before {
    transform: translateX(12px);
}

/* Marketplace install button states */
.dash-market-install-btn {
    cursor: pointer;
    transition: all .3s ease;
}

.dash-market-install-btn.loading {
    opacity: .6;
    pointer-events: none;
}

.dash-market-install-btn.done {
    background: rgba(34, 197, 94, .12) !important;
    color: var(--green) !important;
    pointer-events: none;
}

/* ── Dashboard Marketplace View ── */
.dash-marketplace-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-market-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 8px;
    transition: all .2s ease;
}

.dash-market-card:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(79, 110, 247, .1);
}

.dash-market-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dash-market-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-market-name {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.dash-market-desc {
    font-size: .56rem;
    color: rgba(255, 255, 255, .3);
}

.dash-market-btn {
    font-size: .56rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform .2s ease;
}

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

.dash-market-btn.installed {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    cursor: default;
}

/* Install loading shimmer */
.dash-market-card.is-loading {
    position: relative;
    overflow: hidden;
}

.dash-market-card.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(79, 110, 247, .08) 40%, rgba(79, 110, 247, .15) 50%, rgba(79, 110, 247, .08) 60%, transparent 100%);
    animation: marketShimmer 1.2s ease infinite;
}

@keyframes marketShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Install loading progress bar */
.dash-market-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #22c55e);
    border-radius: 0 2px 2px 0;
    transition: none;
}

/* Success glow */
.dash-market-card.is-success {
    border-color: rgba(34, 197, 94, .4) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, .12), inset 0 0 20px rgba(34, 197, 94, .04);
}

/* Flying orb */
.market-fly-orb {
    position: fixed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-light), var(--accent));
    box-shadow: 0 0 16px rgba(79, 110, 247, .5), 0 0 40px rgba(79, 110, 247, .2);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-fly-orb svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

/* Trail particles */
.market-fly-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-light);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.7;
}

/* Sidebar pulse on receive */
@keyframes sidebarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 110, 247, .4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(79, 110, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 110, 247, 0);
    }
}

.dash-nav-item.is-pulsing {
    animation: sidebarPulse 0.6s ease 2;
    color: var(--accent-light) !important;
    background: rgba(79, 110, 247, .12) !important;
}

.dash-market-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.dash-market-price {
    font-size: .6rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--ff-mono);
}


/* ── Dashboard Billing View ── */
.dash-billing-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(79, 110, 247, .08);
    border: 1px solid rgba(79, 110, 247, .12);
    border-radius: 10px;
}

.dash-billing-plan-name {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
}

.dash-billing-plan-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
}

.dash-billing-plan-price span {
    font-size: .65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
}

.dash-billing-usage {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dash-billing-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-billing-label {
    font-size: .68rem;
    color: rgba(255, 255, 255, .5);
    min-width: 90px;
    flex-shrink: 0;
}

.dash-billing-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 3px;
    overflow: hidden;
}

.dash-billing-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width .8s ease;
}

.dash-billing-value {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .4);
    min-width: 70px;
    text-align: right;
    font-family: var(--ff-mono);
    flex-shrink: 0;
}

.dash-billing-footer {
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

/* ── Reveal Row: Dashboard + Phone side by side ── */
.reveal-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 70vw;
    margin: 0 auto;
    flex-wrap: wrap;
    order: 5;
}



.reveal-row-main {
    flex: 1;
    min-width: 0;
    max-width: 780px;
}

.reveal-row-caption {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 400;
    line-height: 1.6;
}

.reveal-row-tagline {
    flex-basis: 100%;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 8px;
    margin-bottom: 0;
    padding-top: 0;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
}

/* ── WhatsApp Phone Mockup ── */

.wa-phone-wrap {
    opacity: 0;
    transform: translateY(40px);
    flex-shrink: 0;
    position: relative;
    /* Container size is determined by the image inside */
}

/* Glow behind the iPhone frame */
.wa-phone-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 36px;
    background: linear-gradient(135deg,
            rgba(79, 110, 247, .15) 0%,
            rgba(129, 140, 248, .1) 50%,
            rgba(79, 110, 247, .15) 100%);
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
}

.wa-phone-frame {
    display: block;
    width: auto;
    height: 100%;
    pointer-events: none;
    position: relative;
    z-index: 2;
}

.wa-phone {
    /* Screen glass area from pixel analysis of iPhone-Mockup-Silver.png
       Image: 1696×2528. Inner bezel edge (glass starts):
       left=342, top=179, right=1348, bottom=2343 */
    position: absolute;
    top: 7.08%;
    left: 20.17%;
    right: 20.52%;
    bottom: 7.32%;
    background: linear-gradient(180deg, #0b141a 0%, #0d1b25 100%);
    /* Screen corner radius: ~80px indent at 1696px image width = 4.72% */
    border-radius: 4.72%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}



/* ── WA Header: Glassmorphism ── */
.wa-header {
    background: rgba(30, 55, 60, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px 8px 5px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-back {
    color: rgba(255, 255, 255, .7);
    font-size: .5rem;
}

.wa-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(79, 110, 247, .3);
    flex-shrink: 0;
}

.wa-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-name {
    color: #fff;
    font-size: .48rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.wa-status {
    color: #00d26a;
    font-size: .34rem;
    font-weight: 500;
}

/* ── WA Chat Area ── */
.wa-chat {
    padding: 5px 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

/* Scrollbar hidden */
.wa-chat::-webkit-scrollbar {
    width: 0;
}

.wa-msg {
    max-width: 88%;
    padding: 4px 8px;
    border-radius: 7px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
}

.wa-msg-sent {
    background: linear-gradient(135deg, #005c4b 0%, #004a3f 100%);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.wa-msg-received {
    background: rgba(32, 44, 51, 0.9);
    backdrop-filter: blur(8px);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, .04);
}

.wa-msg-text {
    font-size: .55rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, .92);
    display: block;
    text-align: left;
}

.wa-msg-time {
    font-size: .34rem;
    color: rgba(255, 255, 255, .3);
    text-align: right;
    display: block;
    margin-top: 1px;
}

/* ── WA Input Bar: Glassmorphism ── */
.wa-input {
    background: rgba(30, 55, 60, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    padding: 4px 5px 16px;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.wa-input-text {
    flex: 1;
    font-size: .5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-full);
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.wa-send {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00a884 0%, #008f72 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 6px rgba(0, 168, 132, .3);
    flex-shrink: 0;
}

.wa-send:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 168, 132, .4);
}

.wa-homebar {
    display: none;
}

/* WA Chat pill button — hidden */
.wa-pill-wrap {
    display: none;
}

.wa-chat-pill {
    display: none;
}

/* WA Typing indicator */
.wa-typing .wa-msg-text {
    display: flex;
    gap: 3px;
    align-items: center;
    padding: 4px 0;
}

.wa-typing-dots span {
    display: flex;
    gap: 3px;
}

.wa-typing-dots span span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #999;
    animation: waTypingBounce 1.2s infinite;
}

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

.wa-typing-dots span span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes waTypingBounce {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}


/* ── Bot Chat Overlay (inside dashboard) ── */
.bot-chat-overlay {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.bot-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bot-chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(79, 110, 247, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.bot-chat-name {
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
}

.bot-chat-close {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .5);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    cursor: pointer;
    transition: all .2s ease;
    font-family: var(--ff);
}

.bot-chat-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.bot-chat-messages {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    min-height: 0;
}

.bot-chat-msg {
    max-width: 88%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: .72rem;
    line-height: 1.5;
}

.bot-chat-msg-user {
    background: linear-gradient(135deg, rgba(79, 110, 247, .2) 0%, rgba(79, 110, 247, .12) 100%);
    color: rgba(255, 255, 255, .9);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-chat-msg-bot {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .04);
}

/* Bot chat typing indicator */
.bot-chat-typing {
    display: flex;
    gap: 4px;
    padding: 10px 14px;
}

.bot-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(79, 110, 247, .5);
    animation: botTypingBounce 1.2s infinite;
}

.bot-chat-typing span:nth-child(2) {
    animation-delay: .2s;
}

.bot-chat-typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes botTypingBounce {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* Bot chat pill */
.bot-chat-pill-wrap {
    padding: 4px 12px;
    display: flex;
    justify-content: center;
}

.bot-chat-pill {
    background: rgba(79, 110, 247, .1);
    color: var(--accent);
    font-family: var(--ff);
    font-size: .7rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(79, 110, 247, .15);
    cursor: pointer;
    transition: all .2s ease;
}

.bot-chat-pill:hover {
    background: rgba(79, 110, 247, .18);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(79, 110, 247, .2);
}

/* Bot chat input bar */
.bot-chat-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.bot-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-full);
    padding: 7px 14px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    font-family: var(--ff);
    outline: none;
}

.bot-chat-send {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #818CF8 100%);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 8px rgba(79, 110, 247, .3);
    flex-shrink: 0;
    font-family: var(--ff);
}

.bot-chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(79, 110, 247, .4);
}

.wa-caption {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 16px;
}


/* ── Solution Bento Grid ── */
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 70vw;
    margin: 0 auto 56px;
    text-align: left;
    order: 1;
}

.sol-card {
    background: rgba(243, 246, 255, .45);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius-lg);
    padding: 24px 24px 20px;
    box-shadow:
        0 8px 32px rgba(79, 110, 247, .06),
        inset 0 1px 0 rgba(255, 255, 255, .5),
        inset 0 -1px 0 rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
    transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

.sol-card:hover {
    border-color: rgba(255, 255, 255, .5);
    box-shadow:
        0 12px 40px rgba(79, 110, 247, .1),
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.sol-label {
    font-family: var(--ff-mono);
    font-size: .62rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sol-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.sol-h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.sol-desc {
    font-size: .82rem;
    color: #3d4258;
    line-height: 1.55;
    margin-bottom: 8px;
}

/* Wide card subtitle — bigger, darker, more spacing */
.sol-card-wide .sol-desc {
    font-size: 1rem;
    color: #3a3f50;
    margin-bottom: 24px;
}

.sol-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* ── Card 1: Ready in Minutes — Wide card with 3 paths ── */
.sol-card-wide {
    grid-column: 1 / -1;
}

/* Setup Wizard — light UI mockup */
.sol-wizard {
    background: rgba(236, 240, 255, .4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.sol-wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: rgba(232, 237, 255, .35);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 0;
}

.sol-wizard-step-label {
    font-family: var(--ff-mono);
    font-size: .58rem;
    font-weight: 600;
    color: rgba(79, 110, 247, .9);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sol-wizard-title {
    font-size: .88rem;
    font-weight: 700;
    color: #1a1e2e;
}

.sol-wizard-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px;
    background: rgba(243, 246, 255, .3);
}

.sol-wizard-field {
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .6);
    transition: border-color .3s ease;
}

.sol-wizard-field.is-filled {
    border-color: rgba(34, 197, 94, .25);
}

.sol-wizard-field-label {
    display: block;
    font-size: .64rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .5);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}

.sol-wizard-field-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    font-weight: 500;
    color: #1a1e2e;
}

.sol-wizard-check {
    color: #22c55e;
    font-size: .8rem;
}

.sol-wizard-channels {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.sol-wizard-ch {
    font-size: .68rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, .12);
    color: rgba(0, 0, 0, .5);
    transition: all .25s ease;
}

.sol-wizard-ch.is-on {
    background: rgba(79, 110, 247, .15);
    border-color: rgba(79, 110, 247, .3);
    color: var(--accent);
}

.sol-wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.sol-wizard-progress {
    display: flex;
    gap: 6px;
    align-items: center;
}

.sol-wizard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
    transition: background .3s ease;
}

.sol-wizard-dot.is-done {
    background: var(--accent);
}

.sol-wizard-btn {
    font-size: .62rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    cursor: default;
    pointer-events: none;
    opacity: .7;
    transition: all .25s ease;
}

.sol-wizard-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(79, 110, 247, .3);
}

/* Path tab selector */
.sol-path-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.sol-path-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    background: linear-gradient(145deg, #e4ecff 0%, #d0dafc 50%, #dce5ff 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: 2px solid rgba(79, 110, 247, .08);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1),
        border-color .4s ease,
        box-shadow .4s ease,
        background-position .6s ease;
    will-change: transform;
}

/* ── Radial glow bloom from center on hover ── */
.sol-path-tab::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 110, 247, .12) 0%, rgba(79, 110, 247, .04) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    transition: width .5s cubic-bezier(.22, .61, .36, 1),
        height .5s cubic-bezier(.22, .61, .36, 1),
        opacity .4s ease;
    opacity: 0;
}

.sol-path-tab:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

/* ── Rotating aurora border for active state ── */
.sol-path-tab::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--tab-border-angle, 0deg),
            rgba(79, 110, 247, .6),
            rgba(129, 140, 248, .3),
            rgba(79, 110, 247, .05),
            rgba(129, 140, 248, .3),
            rgba(79, 110, 247, .6));
    z-index: -2;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

/* Hover — gradient shifts + subtle lift */
.sol-path-tab:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    border-color: rgba(79, 110, 247, .2);
    box-shadow:
        0 8px 24px rgba(79, 110, 247, .12),
        0 2px 8px rgba(79, 110, 247, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

/* Click — clean press-down */
.sol-path-tab:active {
    transform: scale(.97);
    box-shadow:
        0 1px 4px rgba(79, 110, 247, .08),
        inset 0 2px 4px rgba(79, 110, 247, .06);
    transition: transform .1s ease,
        box-shadow .1s ease;
}

/* ── Active / Selected state ── */
.sol-path-tab.active {
    background: linear-gradient(145deg, #dae3ff 0%, #c8d4fc 50%, #d5dfff 100%);
    background-size: 100% 100%;
    border-color: var(--accent);
    box-shadow:
        0 4px 16px rgba(79, 110, 247, .15),
        inset 0 1px 0 rgba(255, 255, 255, .4);
}

/* No pseudo-effects on active */
.sol-path-tab.active::before,
.sol-path-tab.active::after {
    display: none;
}

.sol-path-icon {
    font-size: 1rem;
    color: #1a1e2e;
    transition: color .35s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1), filter .35s ease;
    position: relative;
    z-index: 2;
}

/* Icon does a playful bounce-pop on hover */
.sol-path-tab:hover .sol-path-icon {
    animation: iconBouncePop .5s cubic-bezier(.34, 1.56, .64, 1);
    color: var(--accent);
}

@keyframes iconBouncePop {
    0% {
        transform: scale(1) rotate(0deg);
    }

    30% {
        transform: scale(1.25) rotate(-6deg);
    }

    50% {
        transform: scale(.9) rotate(3deg);
    }

    70% {
        transform: scale(1.12) rotate(-2deg);
    }

    100% {
        transform: scale(1.05) rotate(0deg);
    }
}

.sol-path-tab.active .sol-path-icon svg {
    filter: drop-shadow(0 0 6px rgba(79, 110, 247, .7)) drop-shadow(0 0 12px rgba(79, 110, 247, .4)) drop-shadow(0 0 20px rgba(79, 110, 247, .2));
}

.sol-path-tab.active .sol-path-icon {
    color: var(--accent);
    transform: scale(1.08);
}

.sol-path-name {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
    z-index: 2;
    transition: color .35s ease, transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.sol-path-tab:hover .sol-path-name {
    color: var(--accent);
    transform: translateY(-1px);
}

.sol-path-sub {
    font-size: .6rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: color .35s ease, opacity .35s ease, transform .4s ease;
}

.sol-path-tab:hover .sol-path-sub {
    color: rgba(79, 110, 247, .8);
    transform: translateY(-1px);
}

.sol-path-tab.active .sol-path-name {
    color: var(--accent);
}

.sol-path-tab.active .sol-path-sub {
    color: rgba(79, 110, 247, .65);
}

/* Path views — grid stacking keeps height of tallest view */
.sol-path-views {
    display: grid;
    flex: 1;
}

.sol-path-view {
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s var(--ease), visibility 0s .35s;
    display: flex;
    flex-direction: column;
}

.sol-path-view.active {
    visibility: visible;
    opacity: 1;
    transition: opacity .35s var(--ease), visibility 0s;
}

@keyframes pathFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.sol-path-caption {
    font-size: .7rem;
    color: #4a4f6a;
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

/* Mini dashboard preview */
.sol-mini-dash {
    display: flex;
    background: #1c1d22;
    border-radius: 10px;
    overflow: hidden;
    min-height: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.sol-mini-sidebar {
    width: 28px;
    background: rgba(255, 255, 255, .03);
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.sol-mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
}

.sol-mini-dot.active {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(79, 110, 247, .4);
}

.sol-mini-main {
    flex: 1;
    padding: 10px 14px;
}

.sol-mini-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sol-mini-greeting {
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
}

.sol-mini-btn {
    font-size: .5rem;
    padding: 3px 8px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

.sol-mini-cards {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.sol-mini-stat {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sol-mini-stat-num {
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
}

.sol-mini-stat-label {
    font-size: .48rem;
    color: rgba(255, 255, 255, .3);
}

.sol-mini-botrow {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 6px;
    margin-bottom: 3px;
    font-size: .58rem;
    color: rgba(255, 255, 255, .6);
}

.sol-mini-badge {
    font-size: .42rem;
    padding: 1px 5px;
    background: rgba(34, 197, 94, .15);
    color: var(--green);
    border-radius: 8px;
    font-weight: 700;
    margin-left: auto;
}

.sol-mini-bot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ── Chat Panel — light dashboard mockup ── */
.sol-chat-panel {
    display: flex;
    background: #ecf0ff;
    border: 1px solid rgba(79, 110, 247, .1);
    border-radius: 12px;
    overflow: hidden;
    min-height: 180px;
    flex: 1;
}

.sol-chat-sidebar {
    width: 150px;
    background: rgba(0, 0, 0, .03);
    border-right: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    flex-shrink: 0;
}

.sol-chat-sidebar-header {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(0, 0, 0, .5);
    padding: 4px 12px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sol-chat-badge {
    font-size: .5rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 1px 5px;
    border-radius: 8px;
}

.sol-chat-session {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background .2s ease;
}

.sol-chat-session:hover {
    background: rgba(0, 0, 0, .04);
}

.sol-chat-session.active {
    background: rgba(79, 110, 247, .1);
    border-left: 2px solid var(--accent);
}

.sol-chat-session-tag {
    font-size: .45rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .04em;
    flex-shrink: 0;
}

.sol-chat-session-tag.platform {
    background: rgba(79, 110, 247, .15);
    color: #4f6ef7;
}

.sol-chat-session-tag.lastfriday {
    background: rgba(79, 110, 247, .15);
    color: #7b9bf5;
}

.sol-chat-session-tag.gmail {
    background: rgba(232, 162, 42, .15);
    color: #e8a22a;
}

.sol-chat-session-name {
    font-size: .68rem;
    color: rgba(0, 0, 0, .65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sol-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
}

.sol-chat-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sol-chat-user-line {
    justify-content: flex-end;
}

.sol-chat-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--ff-mono);
    text-transform: uppercase;
}

.sol-chat-text {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: .82rem;
    line-height: 1.5;
    max-width: 85%;
}

.sol-chat-bot-line .sol-chat-text {
    background: rgba(255, 255, 255, .6);
    color: #1a1e2e;
    border-bottom-left-radius: 4px;
}

.sol-chat-user-line .sol-chat-text {
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.sol-chat-input-bar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    gap: 8px;
}

.sol-chat-input-text {
    flex: 1;
    font-size: .75rem;
    color: rgba(0, 0, 0, .4);
    padding: 6px 10px;
    background: rgba(255, 255, 255, .5);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
}

.sol-chat-send-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}



/* ═══════════════════════════════════════════
   AI & Credits Panel — light bg, dark text
   ═══════════════════════════════════════════ */

.sol-ai-credits-panel {
    display: flex;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

/* Both columns */
.sol-ac-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow:
        0 2px 12px rgba(79, 110, 247, .05),
        inset 0 1px 0 rgba(255, 255, 255, .5);
}

/* Section label row: title + badge */
.sol-ac-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    margin-bottom: 3px;
}

.sol-ac-section-title {
    font-size: .62rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Generic badge */
.sol-ac-badge {
    font-size: .56rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
}

.sol-ac-badge-green {
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
    border: 1px solid rgba(22, 163, 74, .25);
}

.sol-ac-badge-blue {
    background: rgba(79, 110, 247, .12);
    color: #4f6ef7;
    border: 1px solid rgba(79, 110, 247, .3);
}

.sol-ac-badge-outline {
    background: rgba(79, 110, 247, .08);
    color: #4f6ef7;
    border: 1px solid rgba(79, 110, 247, .25);
    cursor: default;
}

/* Own API Key row */
.sol-ac-key-row {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f5f7ff;
    border: 1px solid rgba(79, 110, 247, .12);
    border-radius: 7px;
    padding: 6px 9px;
}

.sol-ac-provider-active {
    font-size: .58rem;
    font-weight: 700;
    color: #4f6ef7;
    background: rgba(79, 110, 247, .1);
    border: 1px solid rgba(79, 110, 247, .25);
    border-radius: 20px;
    padding: 2px 8px;
    flex-shrink: 0;
}

.sol-ac-key-text {
    flex: 1;
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: .6rem;
    color: #374151;
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sol-ac-hint {
    font-size: .56rem;
    color: #374151;
    line-height: 1.4;
    padding: 0 2px;
}

/* Divider */
.sol-ac-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
    color: #374151;
    font-size: .57rem;
    font-weight: 600;
    letter-spacing: .04em;
}

/* OR vertical separator between the two options */
.sol-ac-or-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
    width: 28px;
    position: relative;
}

.sol-ac-or-sep::before,
.sol-ac-or-sep::after {
    content: '';
    flex: 1;
    width: 1px;
    background: rgba(0, 0, 0, .12);
}

.sol-ac-or-sep span {
    font-size: .52rem;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: #fff;
    padding: 3px 0;
    flex-shrink: 0;
}

.sol-ac-divider::before,
.sol-ac-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, .08);
}

/* Model rows */
.sol-ac-model-row {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 7px;
    border-radius: 7px;
    border: 1px solid transparent;
}

.sol-ac-model-active {
    background: rgba(79, 110, 247, .07);
    border-color: rgba(79, 110, 247, .18);
}

.sol-ac-model-name {
    font-size: .65rem;
    font-weight: 700;
    color: #374151;
    flex-shrink: 0;
    min-width: 110px;
}

.sol-ac-model-active .sol-ac-model-name {
    color: #111827;
}

.sol-ac-model-desc {
    font-size: .57rem;
    color: #4b5563;
    flex: 1;
}

.sol-ac-model-active .sol-ac-model-desc {
    color: #374151;
}

/* Color dots */
.sol-ac-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sol-ac-dot-blue {
    background: #3b82f6;
}

.sol-ac-dot-purple {
    background: #8b5cf6;
}

.sol-ac-dot-green {
    background: #10b981;
}

.sol-ac-dot-orange {
    background: #f97316;
}

/* ── Right column ── */

.sol-ac-balance-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 3px;
}

.sol-ac-currency {
    font-size: 1rem;
    font-weight: 600;
    color: #4f6ef7;
    margin-right: 1px;
}

.sol-ac-bar-track {
    height: 4px;
    background: rgba(0, 0, 0, .07);
    border-radius: 999px;
    overflow: hidden;
}

.sol-ac-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f6ef7, #818cf8);
    border-radius: 999px;
}

.sol-ac-bar-muted {
    background: #c7d2fe;
}

.sol-ac-balance-sub {
    font-size: .56rem;
    color: #4b5563;
    margin-top: 2px;
    margin-bottom: 4px;
}

/* Info rows */
.sol-ac-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, .07);
}

.sol-ac-info-row-last {
    margin-top: 2px;
}

.sol-ac-info-label {
    font-size: .62rem;
    font-weight: 600;
    color: #111827;
    flex-shrink: 0;
}

.sol-ac-info-val {
    font-size: .7rem;
    font-weight: 800;
    color: #4f6ef7;
    margin-left: auto;
}

.sol-ac-info-sub {
    font-size: .55rem;
    color: #374151;
    flex: 1;
}

.sol-concierge-flow {
    display: flex;
    flex-direction: column;
    background: rgba(236, 240, 255, .4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 12px;
    flex: 1;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.sol-concierge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    background: rgba(232, 237, 255, .35);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sol-concierge-header-title {
    font-size: .82rem;
    font-weight: 700;
    color: #1a1e2e;
}

.sol-concierge-header-status {
    font-family: var(--ff-mono);
    font-size: .55rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sol-concierge-body {
    display: flex;
    flex: 1;
    gap: 0;
}

/* Left: Client Brief */
.sol-concierge-brief {
    width: 42%;
    padding: 14px 16px;
    border-right: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sol-concierge-brief-label {
    font-family: var(--ff-mono);
    font-size: .65rem;
    font-weight: 700;
    color: rgba(0, 0, 0, .4);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 2px;
}

.sol-concierge-brief-desc {
    font-size: .85rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .78);
    margin-bottom: 4px;
    font-weight: 500;
}

.sol-concierge-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sol-concierge-field-key {
    font-size: .75rem;
    color: rgba(0, 0, 0, .65);
}

.sol-concierge-field-val {
    font-size: .75rem;
    font-weight: 600;
    color: #1a1e2e;
}

.sol-concierge-field-val.sol-accent {
    color: #f97316;
}

.sol-concierge-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.sol-concierge-skill {
    font-size: .65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(79, 110, 247, .15);
    color: var(--accent);
    letter-spacing: .02em;
}

/* Right: Vertical Progress Tracker */
.sol-concierge-tracker {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.sol-concierge-tracker::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: rgba(79, 110, 247, .15);
}

.sol-concierge-track-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.sol-concierge-track-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(79, 110, 247, .15);
    border: 2px solid #e8edf8;
    flex-shrink: 0;
    transition: all .3s ease;
}

.sol-concierge-track-item.done .sol-concierge-track-dot {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, .3);
}

.sol-concierge-track-item.current .sol-concierge-track-dot {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, .5);
}

.sol-concierge-track-content {
    display: flex;
    flex-direction: column;
}

.sol-concierge-track-title {
    font-size: .82rem;
    font-weight: 600;
    color: #1a1e2e;
}

.sol-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    margin-left: 4px;
    vertical-align: middle;
    box-shadow: 0 0 6px rgba(34, 197, 94, .5);
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(34, 197, 94, .5);
    }

    50% {
        opacity: .6;
        box-shadow: 0 0 12px rgba(34, 197, 94, .8);
    }
}

.sol-concierge-track-time {
    font-family: var(--ff-mono);
    font-size: .62rem;
    color: rgba(0, 0, 0, .65);
}


/* ── Card 2: Always Learning — Neural + Memory ── */
.sol-neural-wrap {
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(79, 110, 247, .03), rgba(139, 92, 246, .03));
    margin-bottom: 14px;
}

.sol-neural-canvas {
    width: 100%;
    height: 120px;
    display: block;
}

/* Memory log */
.sol-memory-log {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 12px;
    max-height: 130px;
    overflow-y: auto;
}

.sol-memory-entry {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, .02);
    border-left: 3px solid transparent;
    border-radius: 6px;
    font-size: .66rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all .4s var(--ease);
}

.sol-memory-entry.is-visible {
    opacity: 1;
    transform: translateX(0);
    border-left-color: var(--accent);
}

.sol-memory-time {
    font-family: var(--ff-mono);
    font-size: .58rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 42px;
    flex-shrink: 0;
}

.sol-memory-text {
    color: var(--text-muted);
    line-height: 1.4;
}

/* Progress bar (kept from before) */
.sol-progress-wrap {
    margin-top: 16px;
}

.sol-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    margin-bottom: 6px;
}

.sol-progress-label span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.sol-progress-score {
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.sol-progress-track {
    height: 6px;
    background: rgba(0, 0, 0, .05);
    border-radius: 3px;
    overflow: hidden;
}

.sol-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    border-radius: 4px;
    position: relative;
    transition: width 2s var(--ease);
}

.sol-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: shimmerSweep 2.5s ease-in-out infinite;
}


/* ── Card 3: Skill Marketplace — Toggle Grid ── */
.sol-skill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.sol-skill-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(0, 0, 0, .015);
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 10px;
    transition: all .3s var(--ease);
}

.sol-skill-item[data-skill-active="false"] {
    opacity: .45;
}

.sol-skill-item:hover {
    background: rgba(79, 110, 247, .02);
    border-color: rgba(79, 110, 247, .08);
}

.sol-skill-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(79, 110, 247, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.sol-skill-item:hover .sol-skill-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.sol-skill-detail {
    flex: 1;
    min-width: 0;
}

.sol-skill-title {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.sol-skill-desc-sm {
    font-size: .58rem;
    color: var(--text-muted);
    display: block;
}

/* Toggle switch */
.sol-toggle {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
    flex-shrink: 0;
}

.sol-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sol-toggle-slider {
    position: absolute;
    cursor: default;
    pointer-events: none;
    inset: 0;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(79, 110, 247, .2);
    border-radius: 20px;
    transition: all .3s var(--ease);
}

.sol-toggle-slider::before {
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all .3s var(--ease);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    transform: translateX(14px);
}

.sol-toggle input:checked+.sol-toggle-slider {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(79, 110, 247, .2);
}

.sol-toggle input:checked+.sol-toggle-slider::before {
    transform: translateX(14px);
}

.sol-skill-counter {
    margin-top: 12px;
    font-size: .68rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sol-skill-counter span:first-child {
    font-weight: 700;
    color: var(--accent);
}

.sol-skill-more {
    font-size: .58rem;
    color: var(--accent-light);
    margin-left: auto;
}


/* ── Card 4: Self Coding (Safe) — Code Editor ── */
.sol-code-editor {
    background: #1c1d22;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.sol-code-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.sol-code-dots {
    display: flex;
    gap: 5px;
}

.sol-code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sol-code-filename {
    flex: 1;
    font-size: .62rem;
    color: rgba(255, 255, 255, .4);
}

.sol-code-sandbox {
    font-size: .52rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    background: rgba(34, 197, 94, .12);
    color: var(--green);
}

.sol-code-body {
    padding: 10px 14px;
}

.sol-code-line {
    display: flex;
    gap: 10px;
    font-size: .64rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .65);
    white-space: pre;
}

.sol-code-ln {
    color: rgba(255, 255, 255, .15);
    min-width: 16px;
    text-align: right;
    user-select: none;
}

.sol-code-kw {
    color: #c084fc;
}

.sol-code-fn {
    color: #60a5fa;
}

.sol-code-cm {
    color: rgba(255, 255, 255, .2);
    font-style: italic;
}

.sol-code-num {
    color: #34d399;
}



.sol-code-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, .02);
    border-top: 1px solid rgba(255, 255, 255, .04);
    font-size: .52rem;
    color: rgba(255, 255, 255, .25);
}

.sol-code-status-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sol-code-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.sol-code-status-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sol-code-shield-icon {
    font-size: .7rem;
}

/* Sandbox badges */
.sol-sandbox-badges {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.sol-sandbox-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .6rem;
    font-weight: 500;
    padding: 5px 12px;
    background: rgba(34, 197, 94, .06);
    border: 1px solid rgba(34, 197, 94, .1);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.sol-sandbox-badge span:first-child {
    font-size: .72rem;
}


/* ── Card 2 Redesigned: Horizontal Timeline ── */
.sol-timeline {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: -14px;
    margin-right: -14px;
    padding-top: 4px;
}

.sol-timeline-track {
    position: absolute;
    /* New order: label (top) → info → dot (bottom). Track at dot center */
    bottom: 9px;
    transform: translateY(50%);
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: rgba(0, 0, 0, .06);
    border-radius: 2px;
}

.sol-timeline-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 2s cubic-bezier(.4, 0, .2, 1);
}

.sol-timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
}

.sol-timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
}

/* Label on top, info in middle, dot at bottom */
.sol-timeline-label {
    order: -1;
}

.sol-timeline-info {
    order: 0;
}

.sol-timeline-dot {
    order: 1;
}

.sol-timeline-node:first-child,
.sol-timeline-node:last-child {
    align-items: center;
    text-align: center;
}

.sol-timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #c8cfe0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
    transition: all .5s var(--ease);
    position: relative;
    z-index: 2;
}

.sol-timeline-node.is-active .sol-timeline-dot {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(79, 110, 247, .15), 0 2px 8px rgba(79, 110, 247, .25);
    border-color: #fff;
}

.sol-timeline-label {
    font-family: var(--ff-mono);
    font-size: .78rem;
    font-weight: 700;
    color: #3d4258;
    transition: color .4s ease;
}

.sol-timeline-node.is-active .sol-timeline-label {
    color: var(--accent);
}

.sol-timeline-info {
    font-size: .72rem;
    color: #4a4f6a;
    text-align: center;
    max-width: 140px;
    line-height: 1.3;
    opacity: .8;
    transform: translateY(0);
    transition: all .4s var(--ease);
}

.sol-timeline-node.is-active .sol-timeline-info {
    opacity: 1;
    transform: translateY(0);
}

/* Memory Bank Chips */
.sol-memory-bank {
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
}

.sol-memory-label {
    font-family: var(--ff-mono);
    font-size: .72rem;
    font-weight: 700;
    color: #3d4258;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.sol-memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.sol-memory-chip {
    font-size: .72rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(236, 240, 255, .35);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #3a4063;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4);
}

.sol-chip-icon {
    flex-shrink: 0;
    color: #4f6ef7;
}

.sol-memory-chip:hover {
    background: rgba(79, 110, 247, .15);
    border-color: rgba(255, 255, 255, .45);
    color: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

/* Knowledge Awareness Dots */
.sol-knowledge-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.sol-knowledge-label {
    font-size: .62rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.sol-knowledge-dots {
    display: flex;
    gap: 3px;
    flex: 1;
}

.sol-knowledge-dots span {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .06);
    transition: background .4s ease, box-shadow .4s ease;
}

.sol-knowledge-dots span.is-lit {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(79, 110, 247, .2);
}


/* ── Card 3: Combined Skills + Self-Coding Panels ── */
.sol-combined-panels {
    display: flex;
    gap: 12px;
}

.sol-panel-skills,
.sol-panel-code {
    flex: 1;
    background: rgba(247, 249, 255, .35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    user-select: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.sol-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.sol-panel-title {
    font-family: var(--ff-mono);
    font-size: .58rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sol-panel-count {
    font-size: .6rem;
    font-weight: 700;
    color: var(--text-muted);
}

.sol-panel-count span {
    color: var(--accent);
}

/* Compact skill rows */
.sol-skill-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sol-skill-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px;
    border-radius: 8px;
    transition: all .25s var(--ease);
    min-height: 36px;
}

.sol-skill-row:hover {
    background: rgba(79, 110, 247, .03);
}

.sol-skill-row[data-skill-active="false"] {
    opacity: .45;
}

.sol-skill-row svg {
    flex-shrink: 0;
    color: var(--accent);
}

.sol-skill-name {
    flex: 1;
    font-size: .62rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.sol-skill-footer {
    margin-top: 8px;
    font-size: .56rem;
    color: var(--accent-light);
    text-align: center;
    font-weight: 500;
}

/* Mini code editor — LIGHT theme (inside combined panel) */
.sol-code-editor-mini {
    background: rgba(0, 0, 0, .02);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-code-editor-mini .sol-code-body {
    padding: 10px 12px;
    flex: 1;
}

.sol-code-editor-mini .sol-chat-status {
    color: var(--green);
    font-size: .68rem;
    line-height: 1.1;
}

.sol-code-editor-mini .sol-code-line {
    color: var(--text);
    font-size: .6rem;
    line-height: 1.6;
}

.sol-code-editor-mini .sol-code-ln {
    color: var(--text-muted);
    opacity: .5;
}

.sol-code-editor-mini .sol-code-kw {
    color: var(--accent);
}

.sol-code-editor-mini .sol-code-fn {
    color: #d97706;
}

.sol-code-editor-mini .sol-code-cm {
    color: var(--text-muted);
    font-style: italic;
}

.sol-code-editor-mini .sol-code-num {
    color: #059669;
}

.sol-code-editor-mini .sol-code-statusbar {
    background: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: var(--text-muted);
    font-size: .48rem;
    padding: 5px 10px;
}

.sol-split {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.sol-split-panel {
    flex: 1;
    background: rgba(0, 0, 0, .02);
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: var(--radius-md);
    padding: 14px;
}

.sol-split-label {
    font-family: var(--ff-mono);
    font-size: .6rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.sol-skill-tile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(0, 0, 0, .04);
    border-radius: 8px;
    margin-bottom: 6px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sol-skill-tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.sol-skill-icon {
    font-size: .85rem;
    width: 20px;
    text-align: center;
}

.sol-skill-name {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.sol-skill-badge {
    font-size: .52rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    background: rgba(79, 110, 247, .08);
    color: var(--accent);
    text-transform: uppercase;
}

.sol-install-btn {
    padding: 4px 12px;
    font-size: .62rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(79, 110, 247, .2);
    border-radius: var(--radius-full);
    cursor: pointer;
    background: transparent;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.sol-install-btn:hover {
    background: rgba(79, 110, 247, .06);
    border-color: rgba(79, 110, 247, .35);
}

.sol-install-btn.is-installed {
    background: rgba(34, 197, 94, .08);
    border-color: rgba(34, 197, 94, .2);
    color: var(--green);
    pointer-events: none;
}

/* Ripple on install click */
.sol-install-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(34, 197, 94, .25), transparent 70%);
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.sol-install-ripple.is-active {
    animation: installRipple .5s ease-out forwards;
}

@keyframes installRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Particle burst */
.sol-particle-burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.sol-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.sol-particle.is-active {
    animation: particleBurst .6s var(--ease) forwards;
}

@keyframes particleBurst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--px), var(--py)) scale(0);
        opacity: 0;
    }
}

/* Or divider */
.sol-or {
    display: flex;
    align-items: center;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-light);
    writing-mode: vertical-rl;
    padding: 0 2px;
}

/* Chat mini */
.sol-chat-msgs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sol-chat-msgs .msg {
    font-size: .72rem;
    animation: none;
    padding: 8px 12px;
}


/* ── Card 4: Safe Access — Permissions ── */
.sol-permissions {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.sol-perm-col {
    flex: 1;
}

.sol-perm-header {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sol-perm-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    color: var(--text-muted);
    padding: 4px 0;
}

.sol-perm-check {
    color: var(--green);
    font-weight: 700;
}

.sol-perm-cross {
    color: var(--red);
    font-weight: 700;
}

.sol-perm-lock {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform .3s var(--ease-bounce);
}

.sol-perm-lock.is-locked {
    animation: lockSnap .5s var(--ease-bounce);
}

@keyframes lockSnap {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* ── Card 5: Flat Price — Chart ── */
.sol-chart-wrap {
    height: 100px;
    margin-top: 12px;
    position: relative;
}

.sol-chart-svg {
    width: 100%;
    height: 100%;
}

.sol-chart-line-red {
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    opacity: .7;
}

.sol-chart-line-green {
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.sol-chart-label {
    position: absolute;
    font-size: .62rem;
    font-weight: 600;
}

.sol-chart-label-red {
    top: 8px;
    right: 12px;
    color: var(--red);
}

.sol-chart-label-green {
    bottom: 24px;
    right: 12px;
    color: var(--green);
}


/* ── Dashboard Views ── */
.dash-view {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.dash-view.active {
    display: flex;
}

/* Tabs bar (Bots view) */
.dash-tabs {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 0;
}

.dash-tab {
    font-size: .62rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.dash-tab:hover {
    color: rgba(255, 255, 255, .6);
}

.dash-tab.active {
    color: var(--accent-light);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

/* Bot detail split */
.dash-bot-detail {
    display: flex;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    overflow: hidden;
}

.dash-bot-detail-sidebar {
    width: 170px;
    background: rgba(255, 255, 255, .02);
    border-right: 1px solid rgba(255, 255, 255, .06);
    padding: 14px;
    flex-shrink: 0;
}

.dash-bot-detail-main {
    flex: 1;
    padding: 14px;
}

/* Chat sessions */
.dash-chat-session {
    font-size: .62rem;
    color: rgba(255, 255, 255, .45);
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 3px;
    cursor: pointer;
    transition: background .2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-chat-session:hover {
    background: rgba(255, 255, 255, .04);
}

.dash-session-badge {
    font-size: .5rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Skill filters */
.dash-skill-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.dash-filter {
    font-size: .6rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    border: 1px solid transparent;
}

.dash-filter:hover {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
}

.dash-filter.active {
    background: rgba(79, 110, 247, .15);
    color: var(--accent-light);
    border-color: rgba(79, 110, 247, .2);
}

/* Skill cards grid */
.dash-skill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dash-skill-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.dash-skill-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(79, 110, 247, .15);
    transform: translateY(-2px);
}

.dash-skill-card-icon {
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .04);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-skill-card-info {
    flex: 1;
}

.dash-skill-card-name {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2px;
}

.dash-offiziell {
    font-size: .5rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: var(--radius-full);
    background: rgba(79, 110, 247, .12);
    color: var(--accent-light);
    vertical-align: middle;
    margin-left: 4px;
}

.dash-skill-card-desc {
    font-size: .6rem;
    color: rgba(255, 255, 255, .3);
}

/* Chat area */
.dash-chat-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dash-chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.dash-chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .72rem;
    line-height: 1.5;
}

.dash-chat-bot {
    background: rgba(79, 110, 247, .1);
    color: rgba(255, 255, 255, .8);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.dash-chat-user {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.dash-chat-input {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
}

.dash-chat-input input {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    outline: none;
}

.dash-chat-send {
    font-size: 1rem;
    color: var(--accent);
    cursor: pointer;
    opacity: .5;
}

/* Bot toggle states */
.dash-bot-row[data-bot-active="false"] {
    opacity: .45;
}

.dash-bot-row[data-bot-active="false"] .dash-bot-badge {
    background: rgba(239, 68, 68, .12);
    color: var(--red);
}

.dash-bot-row[data-bot-active="false"] .dash-bot-badge::after {
    content: 'Inactive';
}

.dash-bot-row[data-bot-active="false"] .dash-bot-badge {
    font-size: 0;
}

.dash-bot-row[data-bot-active="false"] .dash-bot-badge::after {
    font-size: .58rem;
}

/* Chart hover replay cursor */
.sol-card-chart .sol-chart-wrap {
    cursor: pointer;
}




/* ════════════════════════════════════════════════════
   Card 4 — Contact Intelligence
   ════════════════════════════════════════════════════ */

/* Card layout: left text + right panel */
.sol-card-contacts__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    align-items: center;
}

.sol-card-contacts__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Override: card-wide sets sol-desc to 1rem — pull it back for card 4 */
.sol-card-contacts .sol-desc--sm {
    font-size: .82rem;
    color: #3d4258;
    margin-bottom: 0;
}

.sol-card-contacts .sol-desc--sm em {
    font-style: italic;
    color: var(--accent);
    font-weight: 600;
}

/* Mode pills legend */
.sol-ci-modes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.sol-ci-mode-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .2s ease;
}

.sol-ci-mode-pill:hover {
    transform: translateX(3px);
}

.sol-ci-mode-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sol-ci-mode--green .sol-ci-mode-dot {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, .5);
}

.sol-ci-mode--yellow .sol-ci-mode-dot {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, .5);
}

.sol-ci-mode--red .sol-ci-mode-dot {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, .5);
}

.sol-ci-mode-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text);
    min-width: 80px;
}

.sol-ci-mode-desc {
    font-size: .7rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Right panel — LIGHT mode matching other sol-card mockups */
.sol-card-contacts__panel {
    background: rgba(236, 240, 255, .35);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(79, 110, 247, .06),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

.sol-ci-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: rgba(232, 237, 255, .3);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sol-ci-panel-title {
    font-size: .75rem;
    font-weight: 700;
    color: #1a1e2e;
    letter-spacing: .01em;
}

.sol-ci-panel-sub {
    font-family: var(--ff-mono);
    font-size: .58rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .35);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Contact rows — light */
.sol-ci-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    border-left: 3px solid transparent;
    background: rgba(243, 246, 255, .3);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition: background .2s ease;
    cursor: default;
}

.sol-ci-row:hover {
    background: rgba(238, 241, 255, .4);
}

.sol-ci-row--green {
    border-left-color: #22c55e;
}

.sol-ci-row--yellow {
    border-left-color: #f59e0b;
}

.sol-ci-row--red {
    border-left-color: #ef4444;
}

/* Avatar — light backgrounds where needed */
.sol-ci-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
    letter-spacing: .02em;
}

.sol-ci-avatar--blue {
    background: linear-gradient(135deg, #4f6ef7, #818cf8);
    box-shadow: 0 0 0 2px rgba(79, 110, 247, .2);
}

.sol-ci-avatar--purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 0 0 2px rgba(167, 139, 250, .2);
}

.sol-ci-avatar--gray {
    background: rgba(0, 0, 0, .07);
    border: 1px solid rgba(0, 0, 0, .1);
    color: rgba(0, 0, 0, .3);
}

/* Info — dark text for light panel */
.sol-ci-info {
    flex: 1;
    min-width: 0;
}

.sol-ci-name {
    font-size: .82rem;
    font-weight: 600;
    color: #1a1e2e;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sol-ci-preview {
    font-size: .67rem;
    color: rgba(0, 0, 0, .38);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.sol-ci-preview-action {
    color: #16a34a;
    font-weight: 600;
}

.sol-ci-preview-action--wait {
    color: #d97706;
}

.sol-ci-preview-action--blocked {
    color: #dc2626;
}

/* Status badge — light panel variant */
.sol-ci-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .6rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .02em;
}

.sol-ci-badge--green {
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .25);
}

.sol-ci-badge--yellow {
    background: rgba(245, 158, 11, .12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, .25);
}

.sol-ci-badge--red {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, .2);
}

/* Own account footer — light, split layout */
.sol-ci-ownaccount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(232, 237, 255, .3);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-top: 1px solid rgba(79, 110, 247, .1);
    font-size: .64rem;
    color: rgba(0, 0, 0, .4);
    line-height: 1.4;
}

.sol-ci-ownaccount__left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sol-ci-ownaccount__left svg {
    flex-shrink: 0;
    color: var(--accent);
    opacity: .7;
}

.sol-ci-ownaccount-num {
    font-family: var(--ff-mono);
    font-size: .62rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .04em;
}

/* Monitoring badge */
.sol-ci-monitoring-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .58rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(79, 110, 247, .12);
    border: 1px solid rgba(79, 110, 247, .25);
    border-radius: 20px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sol-card-contacts__layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .sol-split {
        flex-direction: column;
    }

    .sol-or {
        writing-mode: horizontal-tb;
        padding: 2px 0;
    }

    .sol-permissions {
        flex-direction: column;
        gap: 12px;
    }

    .dash-frame {
        flex-direction: column;
        min-height: auto;
    }

    .dash-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 12px;
        gap: 2px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .dash-sidebar-logo {
        display: none;
    }

    .dash-sidebar-section {
        display: none;
    }

    .dash-nav-item {
        padding: 6px 12px;
        font-size: .68rem;
        white-space: nowrap;
        border-radius: 8px;
    }

    .dash-nav-item .dash-tooltip {
        display: none;
    }

    .dash-stats {
        flex-direction: column;
    }

    .dash-main {
        padding: 16px;
    }

    .activate-btn {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sol-card {
        padding: 20px 18px;
    }

    .dash-frame {
        border-radius: var(--radius-lg);
    }
}


/* ── Bot Chat Overlay (Meine Bots) ── */
.bot-chat-overlay {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    gap: 0;
}

.bot-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.bot-chat-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(79, 110, 247, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.bot-chat-name {
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.bot-chat-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, .35);
    font-size: .9rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .2s ease, color .2s ease;
}

.bot-chat-close:hover {
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
}

.bot-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 120px;
    max-height: 220px;
}

.bot-chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: .7rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.bot-chat-msg-user {
    background: rgba(79, 110, 247, .18);
    color: rgba(255, 255, 255, .85);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.bot-chat-msg-bot {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .75);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* Typing indicator */
.bot-chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 18px;
}

.bot-chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    animation: botTypingDot 1.2s ease-in-out infinite;
}

.bot-chat-typing span:nth-child(2) {
    animation-delay: .15s;
}

.bot-chat-typing span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes botTypingDot {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.bot-chat-pill-wrap {
    padding: 0 16px 6px;
    display: flex;
    overflow: hidden;
}

.bot-chat-pill {
    background: rgba(79, 110, 247, .12);
    border: 1px solid rgba(79, 110, 247, .2);
    color: var(--accent-light);
    font-size: .68rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}

.bot-chat-pill:hover {
    background: rgba(79, 110, 247, .2);
    transform: translateY(-1px);
}

.bot-chat-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.bot-chat-input {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .7);
    font-size: .68rem;
    font-family: inherit;
    outline: none;
}

.bot-chat-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.bot-chat-send {
    background: var(--accent);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .15s ease;
    flex-shrink: 0;
}

.bot-chat-send:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}


/* ── WhatsApp Phone Chat Pill & Typing ── */
.wa-pill-wrap {
    padding: 4px 8px;
    display: flex;
    justify-content: center;
}

.wa-chat-pill {
    background: rgba(37, 211, 102, .1);
    border: 1px solid rgba(37, 211, 102, .2);
    color: #25d366;
    font-size: .42rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 14px;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
    font-family: inherit;
}

.wa-chat-pill:hover {
    background: rgba(37, 211, 102, .18);
    transform: translateY(-1px);
}

/* WhatsApp typing dots */
.wa-typing .wa-msg-text {
    padding: 4px 0;
}

.wa-typing-dots {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wa-typing-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    animation: waTypingDot 1.2s ease-in-out infinite;
}

.wa-typing-dots span:nth-child(2) {
    animation-delay: .15s;
}

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

@keyframes waTypingDot {

    0%,
    60%,
    100% {
        opacity: .3;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* WhatsApp sent/received message layout (dynamic) */
.wa-msg-sent {
    align-self: flex-end;
}

.wa-msg-received {
    align-self: flex-start;
}

/* ============================================================
   AI & Credits Panel — sol-ac-* classes
   Two-column layout: Left = Own API Key, Right = oneBot Credits
   ============================================================ */

.sol-ai-credits-panel {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

/* Columns */
.sol-ac-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px 24px;
    min-width: 0;
}

.sol-ac-left {
    background: rgba(249, 250, 255, .8);
}

.sol-ac-right {
    background: rgba(255, 255, 255, .9);
}

/* OR divider */
.sol-ac-or-sep {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .10), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.sol-ac-or-sep span {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 40px;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #9ca3af;
    padding: 3px 7px;
    white-space: nowrap;
}

/* Section header: title + badge */
.sol-ac-section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
}

.sol-ac-section-title {
    font-size: .72rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -.01em;
}

/* Hint / caption */
.sol-ac-hint {
    font-size: .67rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Badges */
.sol-ac-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 2px 8px;
    border-radius: 40px;
    white-space: nowrap;
}

.sol-ac-badge-green {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, .25);
}

.sol-ac-badge-blue {
    background: rgba(79, 110, 247, .12);
    color: #3b5bdb;
    border: 1px solid rgba(79, 110, 247, .25);
}

.sol-ac-badge-outline {
    background: transparent;
    color: #374151;
    border: 1px solid rgba(0, 0, 0, .15);
    cursor: pointer;
}

.sol-ac-badge-outline:hover {
    background: rgba(0, 0, 0, .04);
}

/* Key row (provider pill + key + valid badge) */
.sol-ac-key-row {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 8px;
    padding: 7px 10px;
    flex-wrap: wrap;
}

.sol-ac-provider-active {
    font-size: .67rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #4f6ef7, #8fa7f7);
    border-radius: 20px;
    padding: 2px 9px;
    flex-shrink: 0;
}

.sol-ac-key-text {
    font-size: .67rem;
    font-family: 'Courier New', monospace;
    color: #374151;
    flex: 1;
    letter-spacing: .04em;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Model list rows */
.sol-ac-model-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    font-size: .7rem;
    color: #374151;
}

.sol-ac-model-row:last-of-type {
    border-bottom: none;
}

.sol-ac-model-active {
    background: rgba(79, 110, 247, .06);
    border-radius: 8px;
    padding: 6px 8px;
    margin: 0 -8px;
}

.sol-ac-model-name {
    font-weight: 600;
    color: #111827;
    flex: 1;
    min-width: 0;
}

.sol-ac-model-desc {
    font-size: .63rem;
    color: #9ca3af;
}

/* Model dots */
.sol-ac-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sol-ac-dot-blue {
    background: #4f6ef7;
}

.sol-ac-dot-purple {
    background: #9b59b6;
}

.sol-ac-dot-green {
    background: #22c55e;
}

.sol-ac-dot-orange {
    background: #f97316;
}

/* Info rows (balance, spend limit) */
.sol-ac-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.sol-ac-info-label {
    font-size: .63rem;
    color: #6b7280;
    font-weight: 500;
}

.sol-ac-info-val {
    font-size: .72rem;
    font-weight: 700;
    color: #111827;
}

/* Balance bar */
.sol-ac-bar-track {
    height: 5px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .07);
    overflow: hidden;
}

.sol-ac-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #4f6ef7, #8fa7f7);
}

/* Accent text (e.g., "High" priority) */
.sol-accent {
    color: #4f6ef7;
    font-weight: 700;
}

/* Compact hint for sol-desc used in contacts card */
.sol-desc--sm {
    font-size: .82rem;
}

/* Monitoring badge in contacts own account row */
.sol-ci-ownaccount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    font-size: .67rem;
    color: #6b7280;
}

.sol-ci-ownaccount__left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sol-ci-monitoring-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .62rem;
    font-weight: 600;
    color: #4f6ef7;
    background: rgba(79, 110, 247, .08);
    border: 1px solid rgba(79, 110, 247, .18);
    border-radius: 20px;
    padding: 3px 9px;
    white-space: nowrap;
}

.sol-coming-soon-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    min-height: 220px;
}

.sol-coming-soon-icon {
    margin-bottom: 16px;
    opacity: .8;
}

.sol-coming-soon-title {
    font-family: 'Young Serif', serif;
    font-size: 1.3rem;
    color: #1e293b;
    margin: 0 0 10px;
}

.sol-coming-soon-desc {
    font-size: .8rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto 16px;
}

.sol-coming-soon-link {
    font-size: .78rem;
    font-weight: 600;
    color: #646cff;
    text-decoration: none;
    transition: color .2s;
}

.sol-coming-soon-link:hover {
    color: #4f46e5;
}