:root {
    --bg-color: #0a0a0a;
    --accent-blue: #3b82f6;
    --text-main: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Compact Card Theme Colors */
    --hostinger-color: #673de6;
    --shopify-color: #96bf48;
    --framer-color: #0055ff;
    --orchids-color: #e040fb;
    --github-color: #ffffff;
    --figma-color: #f24e1e;
    --vercel-color: #000000;
    --notion-color: #ffffff;
    --chatgpt-color: #10a37f;
    --claude-color: #d97706;
    --gemini-color: #4285f4;
    --midjourney-color: #8b5cf6;
    --perplexity-color: #06b6d4;
    --copilot-color: #0078d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100vw;
}

.hint {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
    pointer-events: none;
    user-select: none;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 500;
}

/* Canvas Layer */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}




/* Vignette Layer */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content Layer */
.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 100px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* User Header Section */
.user-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 600px;
    animation: fadeInDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.profile-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.5);
    padding: 3px;
    background: #0a0a0a;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    transition: var(--transition-smooth);
}

.greeting {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 15px;
    color: #888;
    font-weight: 400;
    margin-bottom: 25px;
}

/* Search Bar */
.search-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 20px 14px 45px;
    border-radius: 30px;
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.search-input::placeholder {
    color: #666;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.search-input:focus+.search-icon {
    color: var(--accent-blue);
}

/* Microphone Button */
.mic-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 10, 10, 0.8);
    color: var(--accent-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 16px;
}

.mic-button:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.mic-button.listening {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    animation: pulse 1.5s infinite;
}

.mic-button.processing {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    animation: spin 1s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Sections */
.category-section {
    width: 100%;
    max-width: 1240px;
    margin-bottom: 40px;
}

.category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 10px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 12px;
    max-width: 1240px;
    width: 100%;
    justify-content: center;
    padding: 0 10px;
}

/* Compact Card Styles */
.platform-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    backdrop-filter: blur(8px);
    height: 150px;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    z-index: 5;
}

/* Specific Hover Glows */
.platform-card:hover {
    box-shadow: 0 10px 30px -5px var(--glow-color, rgba(255, 255, 255, 0.1));
    border-color: var(--glow-color, rgba(255, 255, 255, 0.2));
}

.card-icon-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.card-icon-area img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.card-icon-area i {
    font-size: 42px;
    color: #fff;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.platform-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.platform-card:hover .card-icon-area img,
.platform-card:hover .card-icon-area i,
.platform-card:hover .platform-logo {
    transform: scale(1.15);
}

.card-footer {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.2);
}

.card-name {
    font-size: 13px;
    font-weight: 500;
    color: #aaa;
    transition: color 0.2s;
}

.platform-card:hover .card-name {
    color: #fff;
}

/* Specific Brand Styles */
.card-hostinger {
    --glow-color: rgba(103, 61, 230, 0.5);
}

.card-shopify {
    --glow-color: rgba(150, 191, 72, 0.5);
}

.card-framer {
    --glow-color: rgba(0, 85, 255, 0.5);
}

.card-orchids {
    --glow-color: rgba(224, 64, 251, 0.5);
}

.card-github {
    --glow-color: rgba(255, 255, 255, 0.3);
}

.card-figma {
    --glow-color: rgba(242, 78, 30, 0.5);
}

.card-vercel {
    --glow-color: rgba(255, 255, 255, 0.4);
}

.card-notion {
    --glow-color: rgba(230, 230, 230, 0.4);
}

.card-chatgpt {
    --glow-color: rgba(16, 163, 127, 0.5);
}

.card-claude {
    --glow-color: rgba(217, 119, 6, 0.5);
}

.card-gemini {
    --glow-color: rgba(66, 133, 244, 0.5);
}

.card-midjourney {
    --glow-color: rgba(139, 92, 246, 0.5);
}

.card-perplexity {
    --glow-color: rgba(6, 182, 212, 0.5);
}

.card-copilot {
    --glow-color: rgba(0, 120, 212, 0.5);
}

/* Icon Colors */
.card-shopify-icon {
    color: #96bf48;
}

.card-orchids-icon {
    color: #e040fb;
}

.card-github-icon {
    color: #ffffff;
}

.card-figma-icon {
    color: #f24e1e;
}

.card-midjourney-icon {
    color: #8b5cf6;
}

.card-copilot-icon {
    color: #0078d4;
}

/* Responsive Breakpoints */
@media (min-width: 1250px) {
    .cards-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 1249px) and (min-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 899px) and (min-width: 600px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 599px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .platform-card {
        height: 130px;
    }

    .user-header {
        margin-bottom: 35px;
    }

    .greeting {
        font-size: 24px;
    }

    .profile-wrapper {
        width: 70px;
        height: 70px;
    }
}

/* ========================================
   SCATTERED CLIENT MANAGER
   ======================================== */

.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.search-container {
    flex: 1;
    margin: 0 !important;
}

/* The Trigger Button (Top-Right) */
.file-manager-btn {
    width: auto;
    padding: 0 16px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.8);
    color: var(--accent-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 100;
}

.file-manager-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.file-manager-btn:active {
    transform: translateY(0);
}

/* Full Screen Overlay */
.client-manager-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Slight backdrop to focus attention, but cleaner than heavy blur */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-manager-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Close Button (Floating) */
.close-client-manager {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.client-manager-overlay.active .close-client-manager {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.close-client-manager:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: rotate(90deg);
}

/* Cards Container */
.client-cards-container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    perspective: 1000px;
}

/* Big Horizontal Card */
.client-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    padding: 18px;
    background: rgba(20, 20, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Animation initial state managed by keyframes */
    animation: none;
    opacity: 0;
}

.client-manager-overlay.active .client-card {
    /* --d, --tx, --ty, --r are set via JS */
    animation: scatterIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--d);
}

.client-card:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px) !important;
    /* Override animation transform */
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    z-index: 10;
}

/* Animation Keyframes */
@keyframes scatterIn {
    0% {
        opacity: 0;
        /* Start from top-right relative to card's final position */
        /* We use CSS variables to randomize the "flight path" */
        transform: translate(var(--tx), var(--ty)) scale(0.2) rotate(var(--r));
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

.client-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 22px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.client-info {
    flex: 1;
    min-width: 0;
    /* Text truncation support */
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-details {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client-status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    white-space: nowrap;
}

.client-status.active {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.client-card i.fa-angle-right {
    margin-left: 15px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.client-card:hover i.fa-angle-right {
    opacity: 1;
    color: var(--accent-blue);
}

/*  Navigation Bar  */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    z-index: 1000;
    font-family: 'DM Sans', sans-serif;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/*  Logo  */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    gap: 2px;
}

.logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: -2px;
    /* Slight alignment tweak */
}

/*  Nav links container  */
.nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

/* Sliding pill */
.pill {
    position: absolute;
    top: 0;
    height: 100%;
    background: #fff;
    border-radius: 9999px;
    pointer-events: none;
    opacity: 0;
    will-change: transform, width, opacity;
    transition:
        left 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.18s ease;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    z-index: 10;
    display: block;
    border-radius: 9999px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.nav-links a.active-text {
    color: #000;
}

/*  CTA Buttons  */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: #fff;
    color: #000;
    flex-shrink: 0;
    transition:
        background 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-btn:hover {
    background: var(--accent-blue);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Social nav button — subtle dark pill */
.cta-social {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-social:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.cta-social.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/*  Horizontal Clients pill (permanent, always visible)  */
.client-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 14px;
    background: #2c2c2c;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: background 0.25s ease, color 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.client-pill:hover {
    background: #383838;
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.client-pill.active {
    background: #141414;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 16px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.client-pill-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: 16px;
    flex-shrink: 0;
}

.client-pill-bar {
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.client-pill-bar:nth-child(1) {
    width: 16px;
}

.client-pill-bar:nth-child(2) {
    width: 11px;
}

.client-pill-bar:nth-child(3) {
    width: 16px;
}

.client-pill:hover .client-pill-bar:nth-child(2) {
    width: 16px;
}

.client-pill.active .client-pill-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.client-pill.active .client-pill-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.client-pill.active .client-pill-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/*  Contact Popup Modal  */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.contact-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-card {
    position: relative;
    background: rgba(20, 20, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 36px 32px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(16px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-modal-overlay.open .contact-modal-card {
    transform: translateY(0) scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.contact-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.contact-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}

.contact-modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
}

.contact-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.15s;
}

.contact-option:hover {
    transform: scale(1.03);
    opacity: 0.92;
}

.email-option {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.whatsapp-option {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

/* ========================================
   APP TRIGGER BUTTONS (Clients / Social)
======================================== */

.search-row-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.app-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
}

.app-trigger-icon {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #2c2c2c;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.3s ease;
}

.app-trigger:hover .app-trigger-icon {
    transform: scale(1.1);
    background: #363636;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.app-trigger.active .app-trigger-icon {
    background: #141414;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 16px rgba(0, 0, 0, 0.5);
}

.app-trigger-bar {
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.app-trigger-bar:nth-child(2) {
    width: 12px;
}

.app-trigger:hover .app-trigger-bar {
    background: #fff;
}

.app-trigger:hover .app-trigger-bar:nth-child(2) {
    width: 18px;
}

.app-trigger.active .app-trigger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.app-trigger.active .app-trigger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.app-trigger.active .app-trigger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.app-trigger-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.app-trigger:hover .app-trigger-label {
    color: rgba(255, 255, 255, 0.7);
}

.app-trigger.active .app-trigger-label {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SOCIAL CONNECT MODAL
======================================== */

.sc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 900;
}

.sc-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.sc-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    pointer-events: none;
    z-index: 901;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    width: 400px;
    max-width: 94vw;
}

.sc-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.sc-modal-inner {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.sc-modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.sc-modal-close {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    line-height: 1;
    padding: 2px 8px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    user-select: none;
}

.sc-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sc-card {
    border-radius: 14px;
    padding: 18px 12px 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    animation: scCardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sc-modal:not(.open) .sc-card {
    animation: none;
    opacity: 0;
    transform: translateY(12px) scale(0.95);
}

.sc-modal.open .sc-card:nth-child(1) {
    animation-delay: 0.07s;
}

.sc-modal.open .sc-card:nth-child(2) {
    animation-delay: 0.12s;
}

.sc-modal.open .sc-card:nth-child(3) {
    animation-delay: 0.17s;
}

.sc-modal.open .sc-card:nth-child(4) {
    animation-delay: 0.22s;
}

.sc-modal.open .sc-card:nth-child(5) {
    animation-delay: 0.27s;
}

.sc-modal.open .sc-card:nth-child(6) {
    animation-delay: 0.32s;
}

@keyframes scCardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sc-card:hover {
    transform: translateY(-3px) scale(1.03);
}

.sc-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-card-icon svg {
    width: 20px;
    height: 20px;
}

.sc-card-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Platform card colors */
.sc-linkedin {
    background: linear-gradient(135deg, rgba(10, 102, 194, .25), rgba(10, 102, 194, .12));
    border: 1px solid rgba(10, 102, 194, .35);
}

.sc-linkedin:hover {
    box-shadow: 0 12px 28px rgba(10, 102, 194, .35);
    border-color: rgba(10, 102, 194, .6);
}

.sc-medium {
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .12);
}

.sc-medium:hover {
    box-shadow: 0 12px 28px rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
}

.sc-instagram {
    background: linear-gradient(135deg, rgba(225, 48, 108, .2), rgba(126, 55, 166, .12));
    border: 1px solid rgba(225, 48, 108, .3);
}

.sc-instagram:hover {
    box-shadow: 0 12px 28px rgba(225, 48, 108, .3);
    border-color: rgba(225, 48, 108, .55);
}

.sc-reddit {
    background: linear-gradient(135deg, rgba(255, 69, 0, .22), rgba(255, 69, 0, .1));
    border: 1px solid rgba(255, 69, 0, .32);
}

.sc-reddit:hover {
    box-shadow: 0 12px 28px rgba(255, 69, 0, .35);
    border-color: rgba(255, 69, 0, .55);
}

.sc-quora {
    background: linear-gradient(135deg, rgba(185, 43, 39, .22), rgba(185, 43, 39, .1));
    border: 1px solid rgba(185, 43, 39, .32);
}

.sc-quora:hover {
    box-shadow: 0 12px 28px rgba(185, 43, 39, .35);
    border-color: rgba(185, 43, 39, .55);
}

.sc-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, .22), rgba(88, 101, 242, .1));
    border: 1px solid rgba(88, 101, 242, .32);
}

.sc-discord:hover {
    box-shadow: 0 12px 28px rgba(88, 101, 242, .35);
    border-color: rgba(88, 101, 242, .55);
}

/* Icon backgrounds */
.sc-linkedin-bg {
    background: rgba(10, 102, 194, .3);
}

.sc-medium-bg {
    background: rgba(255, 255, 255, .1);
}

.sc-instagram-bg {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sc-reddit-bg {
    background: rgba(255, 69, 0, .3);
}

.sc-quora-bg {
    background: rgba(185, 43, 39, .3);
}

.sc-discord-bg {
    background: rgba(88, 101, 242, .3);
}