.ci-hero {
    padding: 3.25rem 0 2.25rem;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.16), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(167, 139, 250, 0.1), transparent 50%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.ci-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    color: #7dd3fc;
    font-size: 0.85rem;
}
.ci-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.85rem;
}
.ci-stat strong {
    color: #e2e8f0;
    font-weight: 700;
}

.ci-search-wrap {
    position: relative;
    min-width: min(100%, 240px);
}
.ci-search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.8rem;
    pointer-events: none;
}
.ci-search-input {
    padding-left: 2rem;
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
}

.ci-company-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.9));
    height: 100%;
    min-height: 168px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ci-company-card:hover {
    border-color: rgba(125, 211, 252, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    color: inherit;
}
.ci-company-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.ci-company-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid transparent;
}
.ci-company-card-meta {
    min-width: 0;
    flex: 1;
}
.ci-company-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    display: inline-block;
}
.ci-company-dot-lg {
    width: 1.1rem;
    height: 1.1rem;
}
.ci-company-name {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}
.ci-company-focus {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ci-company-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}
.ci-company-count {
    color: #4ade80;
    font-size: 0.8rem;
    font-weight: 600;
}
.ci-company-go {
    color: #7dd3fc;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.ci-company-card:hover .ci-company-go {
    color: #bae6fd;
}

.ci-profile-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.ci-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.7rem 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ci-profile-chip-label {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
}
.ci-profile-chip-level {
    font-size: 0.7rem;
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.15);
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}
.ci-profile-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
}
.ci-profile-card {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.2rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.9));
    height: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ci-profile-card:hover {
    border-color: rgba(167, 139, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    color: inherit;
}
.ci-profile-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.15);
    color: #c4b5fd;
    font-weight: 800;
    font-size: 0.85rem;
}
.ci-profile-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    font-size: 0.8rem;
}
.ci-q-list {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ci-q-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}
.ci-q-item:hover {
    background: rgba(56, 189, 248, 0.08);
    color: #fff;
}
.ci-q-num {
    flex: 0 0 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}
.ci-q-text {
    flex: 1;
    font-size: 0.95rem;
}
.ci-answer {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
}
.ci-answer p {
    margin-bottom: 0.75rem;
}
.ci-answer em {
    color: #94a3b8;
    font-size: 0.92rem;
}

@media (max-width: 575.98px) {
    .ci-company-card {
        min-height: 0;
    }
}
